| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/browser_about_handler.h" | 5 #include "chrome/browser/browser_about_handler.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "app/l10n_util.h" | 10 #include "app/l10n_util.h" |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 AddBoolSyncDetail(details, L"Notifications Enabled", | 494 AddBoolSyncDetail(details, L"Notifications Enabled", |
| 495 full_status.notifications_enabled); | 495 full_status.notifications_enabled); |
| 496 AddIntSyncDetail(details, L"Notifications Received", | 496 AddIntSyncDetail(details, L"Notifications Received", |
| 497 full_status.notifications_received); | 497 full_status.notifications_received); |
| 498 AddIntSyncDetail(details, L"Notifications Sent", | 498 AddIntSyncDetail(details, L"Notifications Sent", |
| 499 full_status.notifications_sent); | 499 full_status.notifications_sent); |
| 500 AddIntSyncDetail(details, L"Unsynced Count", full_status.unsynced_count); | 500 AddIntSyncDetail(details, L"Unsynced Count", full_status.unsynced_count); |
| 501 AddIntSyncDetail(details, L"Conflicting Count", | 501 AddIntSyncDetail(details, L"Conflicting Count", |
| 502 full_status.conflicting_count); | 502 full_status.conflicting_count); |
| 503 AddBoolSyncDetail(details, L"Syncing", full_status.syncing); | 503 AddBoolSyncDetail(details, L"Syncing", full_status.syncing); |
| 504 AddBoolSyncDetail(details, L"Syncer Paused", full_status.syncer_paused); | |
| 505 AddBoolSyncDetail(details, L"Initial Sync Ended", | 504 AddBoolSyncDetail(details, L"Initial Sync Ended", |
| 506 full_status.initial_sync_ended); | 505 full_status.initial_sync_ended); |
| 507 AddBoolSyncDetail(details, L"Syncer Stuck", full_status.syncer_stuck); | 506 AddBoolSyncDetail(details, L"Syncer Stuck", full_status.syncer_stuck); |
| 508 AddIntSyncDetail(details, L"Updates Available", | 507 AddIntSyncDetail(details, L"Updates Available", |
| 509 full_status.updates_available); | 508 full_status.updates_available); |
| 510 AddIntSyncDetail(details, L"Updates Received", | 509 AddIntSyncDetail(details, L"Updates Received", |
| 511 full_status.updates_received); | 510 full_status.updates_received); |
| 512 AddBoolSyncDetail(details, L"Disk Full", full_status.disk_full); | 511 AddBoolSyncDetail(details, L"Disk Full", full_status.disk_full); |
| 513 AddBoolSyncDetail(details, L"Invalid Store", full_status.invalid_store); | 512 AddBoolSyncDetail(details, L"Invalid Store", full_status.invalid_store); |
| 514 AddIntSyncDetail(details, L"Max Consecutive Errors", | 513 AddIntSyncDetail(details, L"Max Consecutive Errors", |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 851 AboutIPCDialog::RunDialog(); | 850 AboutIPCDialog::RunDialog(); |
| 852 return true; | 851 return true; |
| 853 } | 852 } |
| 854 #endif | 853 #endif |
| 855 | 854 |
| 856 #else | 855 #else |
| 857 // TODO(port) Implement this. | 856 // TODO(port) Implement this. |
| 858 #endif | 857 #endif |
| 859 return false; | 858 return false; |
| 860 } | 859 } |
| OLD | NEW |