| Index: components/sync/protocol/proto_enum_conversions.cc
|
| diff --git a/components/sync/protocol/proto_enum_conversions.cc b/components/sync/protocol/proto_enum_conversions.cc
|
| index d1386dceeaf8920a0ff4be9e8a5cea34476c8785..5a2dff163375de082a9dc7fb8772b869e80b373a 100644
|
| --- a/components/sync/protocol/proto_enum_conversions.cc
|
| +++ b/components/sync/protocol/proto_enum_conversions.cc
|
| @@ -335,10 +335,11 @@ const char* ProtoEnumToString(sync_pb::TabNavigation::PasswordState state) {
|
| const char* ProtoEnumToString(
|
| sync_pb::ReadingListSpecifics::ReadingListEntryStatus status) {
|
| ASSERT_ENUM_BOUNDS(sync_pb::ReadingListSpecifics, ReadingListEntryStatus,
|
| - UNREAD, READ);
|
| + UNREAD, UNSEEN);
|
| switch (status) {
|
| ENUM_CASE(sync_pb::ReadingListSpecifics, UNREAD);
|
| ENUM_CASE(sync_pb::ReadingListSpecifics, READ);
|
| + ENUM_CASE(sync_pb::ReadingListSpecifics, UNSEEN);
|
| }
|
| NOTREACHED();
|
| return "";
|
|
|