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

Unified Diff: chrome/browser/automation/testing_automation_provider.cc

Issue 8919021: [Sync] Rename ModelEnumSet to ModelTypeSet (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
« no previous file with comments | « no previous file | chrome/browser/sync/backend_migrator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/automation/testing_automation_provider.cc
diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc
index 25ff0df3199e7c2cf0edef416aa484f974b965f1..afbbe0692b735fa396a148a14ea9b31af3e60af1 100644
--- a/chrome/browser/automation/testing_automation_provider.cc
+++ b/chrome/browser/automation/testing_automation_provider.cc
@@ -4976,9 +4976,9 @@ void TestingAutomationProvider::GetSyncInfo(Browser* browser,
sync_info->SetString("last synced", service->GetLastSyncedTimeString());
sync_info->SetInteger("updates received", status.updates_received);
ListValue* synced_datatype_list = new ListValue;
- const syncable::ModelEnumSet synced_datatypes =
+ const syncable::ModelTypeSet synced_datatypes =
service->GetPreferredDataTypes();
- for (syncable::ModelEnumSet::Iterator it = synced_datatypes.First();
+ for (syncable::ModelTypeSet::Iterator it = synced_datatypes.First();
it.Good(); it.Inc()) {
synced_datatype_list->Append(
new StringValue(syncable::ModelTypeToString(it.Get())));
« no previous file with comments | « no previous file | chrome/browser/sync/backend_migrator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698