| Index: sync/protocol/proto_value_conversions.cc
|
| diff --git a/sync/protocol/proto_value_conversions.cc b/sync/protocol/proto_value_conversions.cc
|
| index cee21396559d653cb25c72c3cc0919ef8bf56c96..85ef789c1ffd4ef84013abad2e659023377aab8e 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(frozen_keybag);
|
| 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_state, PassphraseStateString);
|
| + SET(keystore_bootstrap, EncryptedDataToValue);
|
| + SET_INT64(keystore_migration_time);
|
| return value;
|
| }
|
|
|
| @@ -579,7 +582,6 @@ DictionaryValue* ClientToServerMessageToValue(
|
| return value;
|
| }
|
|
|
| -
|
| #undef SET
|
| #undef SET_REP
|
|
|
|
|