diff options
Diffstat (limited to 'chrome/browser/sync/glue/sync_backend_registrar.h')
-rw-r--r-- | chrome/browser/sync/glue/sync_backend_registrar.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/sync/glue/sync_backend_registrar.h b/chrome/browser/sync/glue/sync_backend_registrar.h index a02c5d8..f43e279 100644 --- a/chrome/browser/sync/glue/sync_backend_registrar.h +++ b/chrome/browser/sync/glue/sync_backend_registrar.h @@ -16,9 +16,12 @@ #include "sync/internal_api/public/engine/model_safe_worker.h" #include "sync/internal_api/public/sync_manager.h" -class MessageLoop; class Profile; +namespace base { +class MessageLoop; +} + namespace syncer { struct UserShare; } // namespace syncer @@ -37,7 +40,7 @@ class SyncBackendRegistrar : public syncer::SyncManager::ChangeDelegate { // |sync_loop|. Must be created on the UI thread. SyncBackendRegistrar(const std::string& name, Profile* profile, - MessageLoop* sync_loop); + base::MessageLoop* sync_loop); // Informs the SyncBackendRegistrar of the currently enabled set of types. // These types will be placed in the passive group. This function should be @@ -128,7 +131,7 @@ class SyncBackendRegistrar : public syncer::SyncManager::ChangeDelegate { Profile* const profile_; - MessageLoop* const sync_loop_; + base::MessageLoop* const sync_loop_; const scoped_refptr<UIModelWorker> ui_worker_; |