Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6129)

Unified Diff: chrome/browser/sync/glue/bridged_sync_notifier.cc

Issue 10875064: Rename SyncNotifier->Invalidator and SyncNotifierObserver->InvalidationHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to ToT for landing Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/glue/bridged_sync_notifier.cc
diff --git a/chrome/browser/sync/glue/bridged_sync_notifier.cc b/chrome/browser/sync/glue/bridged_sync_notifier.cc
deleted file mode 100644
index f7834188171a3a029dfcf4507babef66a70d580c..0000000000000000000000000000000000000000
--- a/chrome/browser/sync/glue/bridged_sync_notifier.cc
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright (c) 2012 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 "chrome/browser/sync/glue/bridged_sync_notifier.h"
-
-#include "chrome/browser/sync/glue/chrome_sync_notification_bridge.h"
-
-namespace browser_sync {
-
-BridgedSyncNotifier::BridgedSyncNotifier(
- ChromeSyncNotificationBridge* bridge,
- syncer::SyncNotifier* delegate)
- : bridge_(bridge), delegate_(delegate) {
- DCHECK(bridge_);
-}
-
-BridgedSyncNotifier::~BridgedSyncNotifier() {
-}
-
-void BridgedSyncNotifier::RegisterHandler(
- syncer::SyncNotifierObserver* handler) {
- if (delegate_.get())
- delegate_->RegisterHandler(handler);
- bridge_->RegisterHandler(handler);
-}
-
-void BridgedSyncNotifier::UpdateRegisteredIds(
- syncer::SyncNotifierObserver* handler,
- const syncer::ObjectIdSet& ids) {
- if (delegate_.get())
- delegate_->UpdateRegisteredIds(handler, ids);
- bridge_->UpdateRegisteredIds(handler, ids);
-}
-
-void BridgedSyncNotifier::UnregisterHandler(
- syncer::SyncNotifierObserver* handler) {
- if (delegate_.get())
- delegate_->UnregisterHandler(handler);
- bridge_->UnregisterHandler(handler);
-}
-
-void BridgedSyncNotifier::SetUniqueId(const std::string& unique_id) {
- if (delegate_.get())
- delegate_->SetUniqueId(unique_id);
-}
-
-void BridgedSyncNotifier::SetStateDeprecated(const std::string& state) {
- if (delegate_.get())
- delegate_->SetStateDeprecated(state);
-}
-
-void BridgedSyncNotifier::UpdateCredentials(
- const std::string& email, const std::string& token) {
- if (delegate_.get())
- delegate_->UpdateCredentials(email, token);
-}
-
-void BridgedSyncNotifier::SendNotification(
- syncer::ModelTypeSet changed_types) {
- if (delegate_.get())
- delegate_->SendNotification(changed_types);
-}
-
-} // namespace browser_sync
« no previous file with comments | « chrome/browser/sync/glue/bridged_sync_notifier.h ('k') | chrome/browser/sync/glue/bridged_sync_notifier_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698