Index: sync/syncable/nigori_util.cc |
diff --git a/sync/syncable/nigori_util.cc b/sync/syncable/nigori_util.cc |
index eaf9eca7513d7190e1938ea452b20d357af94493..2731e7fbbd9132aebcd863b1b6016f34ac958918 100644 |
--- a/sync/syncable/nigori_util.cc |
+++ b/sync/syncable/nigori_util.cc |
@@ -243,7 +243,7 @@ void UpdateNigoriFromEncryptedTypes(ModelTypeSet encrypted_types, |
bool encrypt_everything, |
sync_pb::NigoriSpecifics* nigori) { |
nigori->set_encrypt_everything(encrypt_everything); |
- COMPILE_ASSERT(33 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
+ COMPILE_ASSERT(34 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
nigori->set_encrypt_bookmarks( |
encrypted_types.Has(BOOKMARKS)); |
nigori->set_encrypt_preferences( |
@@ -279,7 +279,7 @@ ModelTypeSet GetEncryptedTypesFromNigori( |
return ModelTypeSet::All(); |
ModelTypeSet encrypted_types; |
- COMPILE_ASSERT(33 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
+ COMPILE_ASSERT(34 == MODEL_TYPE_COUNT, UpdateEncryptedTypes); |
if (nigori.encrypt_bookmarks()) |
encrypted_types.Put(BOOKMARKS); |
if (nigori.encrypt_preferences()) |