| 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 1dd73e5349e5f00f2401dd5c84641c0e54abdeb5..873618cd0ffae1698badb0651f415a35d0f014f1 100644
|
| --- a/chrome/browser/automation/testing_automation_provider.cc
|
| +++ b/chrome/browser/automation/testing_automation_provider.cc
|
| @@ -5074,8 +5074,7 @@ void TestingAutomationProvider::SignInToSync(Browser* browser,
|
| // Sample json output:
|
| // {u'summary': u'SYNC DISABLED'}
|
| //
|
| -// { u'authenticated': True,
|
| -// u'last synced': u'Just now',
|
| +// { u'last synced': u'Just now',
|
| // u'summary': u'READY',
|
| // u'sync url': u'clients4.google.com',
|
| // u'updates received': 42,
|
| @@ -5104,7 +5103,6 @@ void TestingAutomationProvider::GetSyncInfo(Browser* browser,
|
| sync_info->SetString("summary",
|
| ProfileSyncService::BuildSyncStatusSummaryText(status.summary));
|
| sync_info->SetString("sync url", service->sync_service_url().host());
|
| - sync_info->SetBoolean("authenticated", status.authenticated);
|
| sync_info->SetString("last synced", service->GetLastSyncedTimeString());
|
| sync_info->SetInteger("updates received", status.updates_received);
|
| ListValue* synced_datatype_list = new ListValue;
|
|
|