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

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

Issue 10698014: [Sync] Rename csync namespace to syncer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 6 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 6df47b8b5e377bda7afbc9979789a7f46005283d..1ce477067c17e0cb2c856a1df0e5004f16ad2b29 100644
--- a/chrome/browser/sync/glue/bridged_sync_notifier.h
+++ b/chrome/browser/sync/glue/bridged_sync_notifier.h
@@ -19,21 +19,21 @@ class ChromeSyncNotificationBridge;
// with the exception of AddObserver/RemoveObserver, which also result in
// the observer being registered/deregistered with the
// ChromeSyncNotificationBridge.
-class BridgedSyncNotifier : public csync::SyncNotifier {
+class BridgedSyncNotifier : public syncer::SyncNotifier {
public:
// Does not take ownership of |bridge|. Takes ownership of |delegate|.
// |delegate| may be NULL.
BridgedSyncNotifier(ChromeSyncNotificationBridge* bridge,
- csync::SyncNotifier* delegate);
+ syncer::SyncNotifier* delegate);
virtual ~BridgedSyncNotifier();
// SyncNotifier implementation. Passes through all calls to the delegate.
// AddObserver/RemoveObserver will also register/deregister |observer| with
// the bridge.
virtual void AddObserver(
- csync::SyncNotifierObserver* observer) OVERRIDE;
+ syncer::SyncNotifierObserver* observer) OVERRIDE;
virtual void RemoveObserver(
- csync::SyncNotifierObserver* observer) OVERRIDE;
+ syncer::SyncNotifierObserver* observer) OVERRIDE;
virtual void SetUniqueId(const std::string& unique_id) OVERRIDE;
virtual void SetStateDeprecated(const std::string& state) OVERRIDE;
virtual void UpdateCredentials(
@@ -48,7 +48,7 @@ class BridgedSyncNotifier : public csync::SyncNotifier {
ChromeSyncNotificationBridge* bridge_;
// The delegate we are wrapping.
- scoped_ptr<csync::SyncNotifier> delegate_;
+ scoped_ptr<syncer::SyncNotifier> delegate_;
};
} // namespace browser_sync
« no previous file with comments | « chrome/browser/sync/glue/bookmark_model_associator.cc ('k') | chrome/browser/sync/glue/bridged_sync_notifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698