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

Unified Diff: chrome/browser/sync/backend_migrator.h

Issue 408003002: [Sync] Fix namespace for sync_driver component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 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/backend_migrator.h
diff --git a/chrome/browser/sync/backend_migrator.h b/chrome/browser/sync/backend_migrator.h
index a2303ceb5f54bb73a2592f5014581e2b58d258ed..c34520d4865e73bd8cf6b0cbb1b708002561ff27 100644
--- a/chrome/browser/sync/backend_migrator.h
+++ b/chrome/browser/sync/backend_migrator.h
@@ -50,7 +50,7 @@ class BackendMigrator {
BackendMigrator(const std::string& name,
syncer::UserShare* user_share,
ProfileSyncService* service,
- DataTypeManager* manager,
+ sync_driver::DataTypeManager* manager,
const base::Closure &migration_done_callback);
virtual ~BackendMigrator();
@@ -65,7 +65,8 @@ class BackendMigrator {
// Called from ProfileSyncService to notify us of configure done.
// Note: We receive these notificiations only when our state is not IDLE.
- void OnConfigureDone(const DataTypeManager::ConfigureResult& result);
+ void OnConfigureDone(
+ const sync_driver::DataTypeManager::ConfigureResult& result);
// Returns the types that are currently pending migration (if any).
syncer::ModelTypeSet GetPendingMigrationTypesForTest() const;
@@ -83,12 +84,13 @@ class BackendMigrator {
void RestartMigration();
// Called by OnConfigureDone().
- void OnConfigureDoneImpl(const DataTypeManager::ConfigureResult& result);
+ void OnConfigureDoneImpl(
+ const sync_driver::DataTypeManager::ConfigureResult& result);
const std::string name_;
syncer::UserShare* user_share_;
ProfileSyncService* service_;
- DataTypeManager* manager_;
+ sync_driver::DataTypeManager* manager_;
State state_;
« no previous file with comments | « chrome/browser/supervised_user/supervised_user_sync_data_type_controller.cc ('k') | chrome/browser/sync/backend_migrator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698