| 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())));
|
|
|