Index: sync/syncable/nigori_util.cc |
diff --git a/sync/syncable/nigori_util.cc b/sync/syncable/nigori_util.cc |
index 5c88316c99bbe0bb67a9b49d6142b9b8f9ba701a..3e456dd1f5e2d1aa56b6bc8cd73e4185cd54d785 100644 |
--- a/sync/syncable/nigori_util.cc |
+++ b/sync/syncable/nigori_util.cc |
@@ -242,7 +242,7 @@ void UpdateNigoriFromEncryptedTypes(ModelTypeSet encrypted_types, |
bool encrypt_everything, |
sync_pb::NigoriSpecifics* nigori) { |
nigori->set_encrypt_everything(encrypt_everything); |
- COMPILE_ASSERT(27 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
+ COMPILE_ASSERT(28 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
nigori->set_encrypt_bookmarks( |
encrypted_types.Has(BOOKMARKS)); |
nigori->set_encrypt_preferences( |
@@ -276,7 +276,7 @@ ModelTypeSet GetEncryptedTypesFromNigori( |
return ModelTypeSet::All(); |
ModelTypeSet encrypted_types; |
- COMPILE_ASSERT(27 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
+ COMPILE_ASSERT(28 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
if (nigori.encrypt_bookmarks()) |
encrypted_types.Put(BOOKMARKS); |
if (nigori.encrypt_preferences()) |