summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/backend_migrator.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/sync/backend_migrator.h')
-rw-r--r--chrome/browser/sync/backend_migrator.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/sync/backend_migrator.h b/chrome/browser/sync/backend_migrator.h
index 7e771cb..ad34132 100644
--- a/chrome/browser/sync/backend_migrator.h
+++ b/chrome/browser/sync/backend_migrator.h
@@ -55,7 +55,7 @@ class BackendMigrator : public content::NotificationObserver {
virtual ~BackendMigrator();
// Starts a sequence of events that will disable and reenable |types|.
- void MigrateTypes(const syncable::ModelTypeSet& types);
+ void MigrateTypes(syncable::ModelEnumSet types);
void AddMigrationObserver(MigrationObserver* observer);
bool HasMigrationObserver(MigrationObserver* observer) const;
@@ -69,7 +69,7 @@ class BackendMigrator : public content::NotificationObserver {
State state() const;
// Returns the types that are currently pending migration (if any).
- syncable::ModelTypeSet GetPendingMigrationTypesForTest() const;
+ syncable::ModelEnumSet GetPendingMigrationTypesForTest() const;
private:
void ChangeState(State new_state);
@@ -97,7 +97,7 @@ class BackendMigrator : public content::NotificationObserver {
ObserverList<MigrationObserver> migration_observers_;
- syncable::ModelTypeSet to_migrate_;
+ syncable::ModelEnumSet to_migrate_;
base::WeakPtrFactory<BackendMigrator> weak_ptr_factory_;