Index: sync/protocol/proto_value_conversions.cc |
diff --git a/sync/protocol/proto_value_conversions.cc b/sync/protocol/proto_value_conversions.cc |
index 91a11e3759536f0153cd62f508e626762665e834..a9802c45a8b0ec5f97b50e85b740ea4406884230 100644 |
--- a/sync/protocol/proto_value_conversions.cc |
+++ b/sync/protocol/proto_value_conversions.cc |
@@ -515,6 +515,14 @@ base::DictionaryValue* ManagedUserSharedSettingSpecificsToValue( |
return value; |
} |
+base::DictionaryValue* ManagedUserWhitelistSpecificsToValue( |
+ const sync_pb::ManagedUserWhitelistSpecifics& proto) { |
+ base::DictionaryValue* value = new base::DictionaryValue(); |
+ SET_STR(id); |
+ SET_STR(name); |
+ return value; |
+} |
+ |
base::DictionaryValue* NigoriSpecificsToValue( |
const sync_pb::NigoriSpecifics& proto) { |
base::DictionaryValue* value = new base::DictionaryValue(); |
@@ -687,6 +695,7 @@ base::DictionaryValue* EntitySpecificsToValue( |
SET_FIELD(managed_user_shared_setting, |
ManagedUserSharedSettingSpecificsToValue); |
SET_FIELD(managed_user, ManagedUserSpecificsToValue); |
+ SET_FIELD(managed_user_whitelist, ManagedUserWhitelistSpecificsToValue); |
SET_FIELD(nigori, NigoriSpecificsToValue); |
SET_FIELD(password, PasswordSpecificsToValue); |
SET_FIELD(preference, PreferenceSpecificsToValue); |