summaryrefslogtreecommitdiff
path: root/chromium/content/browser/background_sync/background_sync_registration_options.cc
blob: 7b8e1e7e7bc6b1ce35417e6fa982bed12aa757d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/background_sync/background_sync_registration_options.h"

namespace content {

bool BackgroundSyncRegistrationOptions::Equals(
    const BackgroundSyncRegistrationOptions& other) const {
  return tag == other.tag && network_state == other.network_state;
}

}  // namespace content