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

Unified Diff: chrome/browser/sync/engine/syncapi.h

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/engine/syncapi.h
diff --git a/chrome/browser/sync/engine/syncapi.h b/chrome/browser/sync/engine/syncapi.h
index a132fdf98fe720a1068542a7b740a092541252c0..771b1808cd5a06b1a3f799b6be7227481dff69b9 100644
--- a/chrome/browser/sync/engine/syncapi.h
+++ b/chrome/browser/sync/engine/syncapi.h
@@ -702,6 +702,9 @@ class SyncManager {
SUMMARY_STATUS_COUNT,
};
+ Status();
+ ~Status();
+
Summary summary;
bool authenticated; // Successfully authenticated via GAIA.
bool server_up; // True if we have received at least one good
@@ -747,6 +750,11 @@ class SyncManager {
// Count of useless and useful syncs we perform.
int useless_sync_cycles;
int useful_sync_cycles;
+
+ // Encryption related.
+ std::string encrypted_types;
akalin 2011/08/04 01:14:48 I'd prefer storing it here as a ModelTypeSet/BitSe
Nicolas Zea 2011/08/04 01:27:52 Done.
+ bool cryptographer_ready;
+ bool crypto_has_pending_keys;
};
// An interface the embedding application implements to receive notifications

Powered by Google App Engine
This is Rietveld 408576698