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

Unified Diff: sync/internal_api/public/engine/sync_status.cc

Issue 10917246: [Sync] Add keystore encryption info to about:sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync/api/time.h Created 8 years, 3 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: sync/internal_api/public/engine/sync_status.cc
diff --git a/sync/internal_api/public/engine/sync_status.cc b/sync/internal_api/public/engine/sync_status.cc
index 9ed3bf33b64e63b05ba8600158b2930a5db8be0e..26be0c8de389daee6b19529af070b0fea8683908 100644
--- a/sync/internal_api/public/engine/sync_status.cc
+++ b/sync/internal_api/public/engine/sync_status.cc
@@ -4,6 +4,8 @@
#include "sync/internal_api/public/engine/sync_status.h"
+#include "sync/internal_api/public/util/sync_string_conversions.h"
akalin 2012/09/18 20:16:37 don't need this anymore, right?
Nicolas Zea 2012/09/18 22:17:18 Done.
+
namespace syncer {
SyncStatus::SyncStatus()
@@ -30,7 +32,9 @@ SyncStatus::SyncStatus()
useless_sync_cycles(0),
useful_sync_cycles(0),
cryptographer_ready(false),
- crypto_has_pending_keys(false) {
+ crypto_has_pending_keys(false),
+ has_keystore_key(false),
+ passphrase_type(IMPLICIT_PASSPHRASE) {
}
SyncStatus::~SyncStatus() {

Powered by Google App Engine
This is Rietveld 408576698