Commit 1ba4fd30 authored by zork@google.com's avatar zork@google.com

Remove deprecated status flags from sync

Review URL: http://codereview.chromium.org/202033

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25864 0039d316-1c4b-4281-b951-d872f2087c98
parent 42a11612
...@@ -501,7 +501,6 @@ std::string AboutSync() { ...@@ -501,7 +501,6 @@ std::string AboutSync() {
AddIntSyncDetail(details, L"Conflicting Count", AddIntSyncDetail(details, L"Conflicting Count",
full_status.conflicting_count); full_status.conflicting_count);
AddBoolSyncDetail(details, L"Syncing", full_status.syncing); AddBoolSyncDetail(details, L"Syncing", full_status.syncing);
AddBoolSyncDetail(details, L"Syncer Paused", full_status.syncer_paused);
AddBoolSyncDetail(details, L"Initial Sync Ended", AddBoolSyncDetail(details, L"Initial Sync Ended",
full_status.initial_sync_ended); full_status.initial_sync_ended);
AddBoolSyncDetail(details, L"Syncer Stuck", full_status.syncer_stuck); AddBoolSyncDetail(details, L"Syncer Stuck", full_status.syncer_stuck);
......
...@@ -301,8 +301,6 @@ std::wstring ProfileSyncService::BuildSyncStatusSummaryText( ...@@ -301,8 +301,6 @@ std::wstring ProfileSyncService::BuildSyncStatusSummaryText(
return L"SYNCING"; return L"SYNCING";
case sync_api::SyncManager::Status::READY: case sync_api::SyncManager::Status::READY:
return L"READY"; return L"READY";
case sync_api::SyncManager::Status::PAUSED:
return L"PAUSED";
case sync_api::SyncManager::Status::CONFLICT: case sync_api::SyncManager::Status::CONFLICT:
return L"CONFLICT"; return L"CONFLICT";
case sync_api::SyncManager::Status::OFFLINE_UNUSABLE: case sync_api::SyncManager::Status::OFFLINE_UNUSABLE:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment