Index: sync/protocol/proto_value_conversions_unittest.cc |
diff --git a/sync/protocol/proto_value_conversions_unittest.cc b/sync/protocol/proto_value_conversions_unittest.cc |
index 11c9674efbd456a1c376769102cefefba0f8b23c..dd3a701e6dfd005ef789fe05a10a8d69b35b53ce 100644 |
--- a/sync/protocol/proto_value_conversions_unittest.cc |
+++ b/sync/protocol/proto_value_conversions_unittest.cc |
@@ -55,7 +55,7 @@ TEST_F(ProtoValueConversionsTest, ProtoChangeCheck) { |
// If this number changes, that means we added or removed a data |
// type. Don't forget to add a unit test for {New |
// type}SpecificsToValue below. |
- EXPECT_EQ(31, MODEL_TYPE_COUNT); |
+ EXPECT_EQ(32, MODEL_TYPE_COUNT); |
// We'd also like to check if we changed any field in our messages. |
// However, that's hard to do: sizeof could work, but it's |
@@ -236,6 +236,10 @@ TEST_F(ProtoValueConversionsTest, SessionSpecificsToValue) { |
TestSpecificsToValue(SessionSpecificsToValue); |
} |
+TEST_F(ProtoValueConversionsTest, SyncedNotificationAppInfoSpecificsToValue) { |
+ TestSpecificsToValue(SyncedNotificationAppInfoSpecificsToValue); |
+} |
+ |
TEST_F(ProtoValueConversionsTest, SyncedNotificationSpecificsToValue) { |
TestSpecificsToValue(SyncedNotificationSpecificsToValue); |
} |
@@ -290,6 +294,7 @@ TEST_F(ProtoValueConversionsTest, EntitySpecificsToValue) { |
SET_FIELD(search_engine); |
SET_FIELD(session); |
SET_FIELD(synced_notification); |
+ SET_FIELD(synced_notification_app_info); |
SET_FIELD(theme); |
SET_FIELD(typed_url); |