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

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: fix restart case 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 513f8b944928252d2728f48af6448e31263ec38e..f3e2a43637b894003173d3110fe8593b54cd64af 100644
--- a/chrome/browser/sync/sync_ui_util.cc
+++ b/chrome/browser/sync/sync_ui_util.cc
@@ -424,6 +424,18 @@ 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,
+ "Encrypt Everything",
+ full_status.encrypt_everything);
+ sync_ui_util::AddBoolSyncDetail(details,
+ "Cryptographer Ready",
+ full_status.cryptographer_ready);
const browser_sync::sessions::SyncSessionSnapshot* snapshot =
service->sync_initialized() ?
« chrome/browser/sync/engine/syncapi.cc ('K') | « chrome/browser/sync/engine/syncapi.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698