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

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

Issue 10702074: Refactor sync-specific parts out of SyncNotifier/SyncNotifierObserver (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor cleanup Created 8 years, 5 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.h
diff --git a/chrome/browser/sync/glue/bridged_sync_notifier.h b/chrome/browser/sync/glue/bridged_sync_notifier.h
index b856080ae6c500e7624f023d047d2bbaeb756e5d..3f96d1121e8a6adadb0699eff7c6d6a15305a9d8 100644
--- a/chrome/browser/sync/glue/bridged_sync_notifier.h
+++ b/chrome/browser/sync/glue/bridged_sync_notifier.h
@@ -30,16 +30,15 @@ class BridgedSyncNotifier : public syncer::SyncNotifier {
// SyncNotifier implementation. Passes through all calls to the delegate.
// AddObserver/RemoveObserver will also register/deregister |observer| with
// the bridge.
- virtual void AddObserver(
+ virtual void AddHandler(
syncer::SyncNotifierObserver* observer) OVERRIDE;
- virtual void RemoveObserver(
+ virtual void RemoveHandler(
syncer::SyncNotifierObserver* observer) OVERRIDE;
+ virtual void ReloadHandlers() OVERRIDE;
virtual void SetUniqueId(const std::string& unique_id) OVERRIDE;
virtual void SetStateDeprecated(const std::string& state) OVERRIDE;
virtual void UpdateCredentials(
const std::string& email, const std::string& token) OVERRIDE;
- virtual void UpdateEnabledTypes(
- syncer::ModelTypeSet enabled_types) OVERRIDE;
virtual void SendNotification(
syncer::ModelTypeSet changed_types) OVERRIDE;
« no previous file with comments | « no previous file | chrome/browser/sync/glue/bridged_sync_notifier.cc » ('j') | sync/notifier/invalidation_notifier_base.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698