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

Unified Diff: sync/internal_api/public/sync_encryption_handler.cc

Issue 674633002: sync: add WIFI_CREDENTIALS protobuf, ModelType, and preference (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@local-master
Patch Set: Created 6 years, 2 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/sync_encryption_handler.cc
diff --git a/sync/internal_api/public/sync_encryption_handler.cc b/sync/internal_api/public/sync_encryption_handler.cc
index e967600d65de997554b39608d28716fc4e4a417c..f8eeeef7b3fbc3536c32ccc71e2cc414f4ab752c 100644
--- a/sync/internal_api/public/sync_encryption_handler.cc
+++ b/sync/internal_api/public/sync_encryption_handler.cc
@@ -14,9 +14,9 @@ SyncEncryptionHandler::~SyncEncryptionHandler() {}
// Static.
ModelTypeSet SyncEncryptionHandler::SensitiveTypes() {
- // It has its own encryption scheme, but we include it anyway.
ModelTypeSet types;
- types.Put(PASSWORDS);
+ types.Put(PASSWORDS); // Has its own encryption, but include it anyway.
+ types.Put(WIFI_CREDENTIALS);
mukesh agrawal 2014/10/22 20:15:23 kevinliu@ and I are still discussing the encryptio
return types;
}

Powered by Google App Engine
This is Rietveld 408576698