summaryrefslogtreecommitdiffstats
path: root/sync/protocol/proto_value_conversions.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sync/protocol/proto_value_conversions.cc')
-rw-r--r--sync/protocol/proto_value_conversions.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/sync/protocol/proto_value_conversions.cc b/sync/protocol/proto_value_conversions.cc
index cee2139..22de2bd 100644
--- a/sync/protocol/proto_value_conversions.cc
+++ b/sync/protocol/proto_value_conversions.cc
@@ -293,8 +293,8 @@ DictionaryValue* ExtensionSpecificsToValue(
DictionaryValue* NigoriSpecificsToValue(
const sync_pb::NigoriSpecifics& proto) {
DictionaryValue* value = new DictionaryValue();
- SET(encrypted, EncryptedDataToValue);
- SET_BOOL(using_explicit_passphrase);
+ SET(encryption_keybag, EncryptedDataToValue);
+ SET_BOOL(keybag_is_frozen);
SET_BOOL(encrypt_bookmarks);
SET_BOOL(encrypt_preferences);
SET_BOOL(encrypt_autofill_profile);
@@ -310,6 +310,9 @@ DictionaryValue* NigoriSpecificsToValue(
SET_BOOL(encrypt_everything);
SET_REP(device_information, DeviceInformationToValue);
SET_BOOL(sync_tab_favicons);
+ SET_ENUM(passphrase_type, PassphraseTypeString);
+ SET(keystore_decryptor_token, EncryptedDataToValue);
+ SET_INT64(keystore_migration_time);
return value;
}
@@ -579,7 +582,6 @@ DictionaryValue* ClientToServerMessageToValue(
return value;
}
-
#undef SET
#undef SET_REP