| 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 9f35ef0175a008aaab47f4ac3cdeed9f96c7f18a..cc133bdf1cd5df5486aa689110be617686b720a8 100644
|
| --- a/chrome/browser/sync/glue/chrome_sync_notification_bridge.h
|
| +++ b/chrome/browser/sync/glue/chrome_sync_notification_bridge.h
|
| @@ -32,7 +32,7 @@ class ChromeSyncNotificationBridge : public content::NotificationObserver {
|
| virtual ~ChromeSyncNotificationBridge();
|
|
|
| // Must be called on UI thread.
|
| - void UpdateEnabledTypes(const syncable::ModelTypeSet enabled_types);
|
| + void UpdateEnabledTypes(const syncer::ModelTypeSet enabled_types);
|
|
|
| // These can be called on any thread.
|
| virtual void AddObserver(syncer::SyncNotifierObserver* observer);
|
| @@ -45,7 +45,7 @@ class ChromeSyncNotificationBridge : public content::NotificationObserver {
|
|
|
| private:
|
| content::NotificationRegistrar registrar_;
|
| - syncable::ModelTypeSet enabled_types_;
|
| + syncer::ModelTypeSet enabled_types_;
|
|
|
| // Because [Add/Remove]Observer can be called from any thread, we need a
|
| // thread-safe observerlist.
|
|
|