Index: sync/syncable/nigori_util.cc |
diff --git a/sync/syncable/nigori_util.cc b/sync/syncable/nigori_util.cc |
index 0b6c40c3182bb1ff22ca2bf46e38695ff39fb3fb..4888f66ef3bcd44c94de9375d0a85b326a30894f 100644 |
--- a/sync/syncable/nigori_util.cc |
+++ b/sync/syncable/nigori_util.cc |
@@ -252,7 +252,7 @@ void UpdateNigoriFromEncryptedTypes(ModelTypeSet encrypted_types, |
bool encrypt_everything, |
sync_pb::NigoriSpecifics* nigori) { |
nigori->set_encrypt_everything(encrypt_everything); |
- COMPILE_ASSERT(25 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
+ COMPILE_ASSERT(26 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
nigori->set_encrypt_bookmarks( |
encrypted_types.Has(BOOKMARKS)); |
nigori->set_encrypt_preferences( |
@@ -286,7 +286,7 @@ ModelTypeSet GetEncryptedTypesFromNigori( |
return ModelTypeSet::All(); |
ModelTypeSet encrypted_types; |
- COMPILE_ASSERT(25 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
+ COMPILE_ASSERT(26 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
if (nigori.encrypt_bookmarks()) |
encrypted_types.Put(BOOKMARKS); |
if (nigori.encrypt_preferences()) |