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

Unified Diff: chrome/browser/sync/glue/chrome_sync_notification_bridge.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/chrome_sync_notification_bridge.h
diff --git a/chrome/browser/sync/glue/chrome_sync_notification_bridge.h b/chrome/browser/sync/glue/chrome_sync_notification_bridge.h
index 0b6f12bad50c4188392b23b200d588f1a34c2c56..1d03ca983b1ee2cd5522fe272e1e5c2f49a05914 100644
--- a/chrome/browser/sync/glue/chrome_sync_notification_bridge.h
+++ b/chrome/browser/sync/glue/chrome_sync_notification_bridge.h
@@ -14,7 +14,7 @@
class Profile;
-namespace csync {
+namespace syncer {
class SyncNotifierObserver;
} // namespace
@@ -35,8 +35,8 @@ class ChromeSyncNotificationBridge : public content::NotificationObserver {
void UpdateEnabledTypes(const syncable::ModelTypeSet enabled_types);
// These can be called on any thread.
- virtual void AddObserver(csync::SyncNotifierObserver* observer);
- virtual void RemoveObserver(csync::SyncNotifierObserver* observer);
+ virtual void AddObserver(syncer::SyncNotifierObserver* observer);
+ virtual void RemoveObserver(syncer::SyncNotifierObserver* observer);
// NotificationObserver implementation. Called on UI thread.
virtual void Observe(int type,
@@ -49,7 +49,7 @@ class ChromeSyncNotificationBridge : public content::NotificationObserver {
// Because [Add/Remove]Observer can be called from any thread, we need a
// thread-safe observerlist.
- scoped_refptr<ObserverListThreadSafe<csync::SyncNotifierObserver> >
+ scoped_refptr<ObserverListThreadSafe<syncer::SyncNotifierObserver> >
observers_;
};

Powered by Google App Engine
This is Rietveld 408576698