| // 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 |