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

Unified Diff: chrome/browser/sync/sync_ui_util.cc

Issue 7550023: [Sync] Add passphrase/encryption info to chrome://sync. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: compile Created 9 years, 5 months 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
Index: chrome/browser/sync/sync_ui_util.cc
diff --git a/chrome/browser/sync/sync_ui_util.cc b/chrome/browser/sync/sync_ui_util.cc
index 842b9495c2aa2fe8c36a19618dd9cea8d6a82215..07324ba72f42d69b74cfc75c29e522bb7f428b97 100644
--- a/chrome/browser/sync/sync_ui_util.cc
+++ b/chrome/browser/sync/sync_ui_util.cc
@@ -425,6 +425,21 @@ void ConstructAboutInformation(ProfileSyncService* service,
sync_ui_util::AddIntSyncDetail(details,
"Useful Sync Cycles",
full_status.useful_sync_cycles);
+ sync_ui_util::AddBoolSyncDetail(details,
+ "Explicit Passphrase",
+ service->IsUsingSecondaryPassphrase());
+ sync_ui_util::AddBoolSyncDetail(details,
+ "Passphrase Required",
+ service->IsPassphraseRequired());
+ sync_ui_util::AddBoolSyncDetail(details,
+ "Cryptographer Ready",
+ full_status.cryptographer_ready);
+ sync_ui_util::AddBoolSyncDetail(details,
+ "Cryptographer Has Pending Keys",
+ full_status.crypto_has_pending_keys);
+ sync_ui_util::AddStringSyncDetails(details,
+ "Encrypted Types",
+ full_status.encrypted_types);
const browser_sync::sessions::SyncSessionSnapshot* snapshot =
service->sync_initialized() ?

Powered by Google App Engine
This is Rietveld 408576698