| Index: sync/protocol/proto_enum_conversions.cc
|
| diff --git a/sync/protocol/proto_enum_conversions.cc b/sync/protocol/proto_enum_conversions.cc
|
| index c624efe500dae850422bbd96b1e28dd35c726e1a..130aad9725abaa171f9071bec224daf31e2ff674 100644
|
| --- a/sync/protocol/proto_enum_conversions.cc
|
| +++ b/sync/protocol/proto_enum_conversions.cc
|
| @@ -83,7 +83,7 @@ const char* GetPageTransitionRedirectTypeString(
|
| const char* GetUpdatesSourceString(
|
| sync_pb::GetUpdatesCallerInfo::GetUpdatesSource updates_source) {
|
| ASSERT_ENUM_BOUNDS(sync_pb::GetUpdatesCallerInfo, GetUpdatesSource,
|
| - UNKNOWN, DATATYPE_REFRESH);
|
| + UNKNOWN, RETRY);
|
| switch (updates_source) {
|
| ENUM_CASE(sync_pb::GetUpdatesCallerInfo, UNKNOWN);
|
| ENUM_CASE(sync_pb::GetUpdatesCallerInfo, FIRST_UPDATE);
|
| @@ -96,6 +96,7 @@ const char* GetUpdatesSourceString(
|
| ENUM_CASE(sync_pb::GetUpdatesCallerInfo, NEW_CLIENT);
|
| ENUM_CASE(sync_pb::GetUpdatesCallerInfo, RECONFIGURATION);
|
| ENUM_CASE(sync_pb::GetUpdatesCallerInfo, DATATYPE_REFRESH);
|
| + ENUM_CASE(sync_pb::GetUpdatesCallerInfo, RETRY);
|
| }
|
| NOTREACHED();
|
| return "";
|
| @@ -104,7 +105,7 @@ const char* GetUpdatesSourceString(
|
| const char* GetUpdatesOriginString(
|
| sync_pb::SyncEnums::GetUpdatesOrigin origin) {
|
| ASSERT_ENUM_BOUNDS(sync_pb::SyncEnums, GetUpdatesOrigin,
|
| - UNKNOWN_ORIGIN, GU_TRIGGER);
|
| + UNKNOWN_ORIGIN, RETRY);
|
| switch (origin) {
|
| ENUM_CASE(sync_pb::SyncEnums, UNKNOWN_ORIGIN);
|
| ENUM_CASE(sync_pb::SyncEnums, PERIODIC);
|
| @@ -113,6 +114,7 @@ const char* GetUpdatesOriginString(
|
| ENUM_CASE(sync_pb::SyncEnums, NEW_CLIENT);
|
| ENUM_CASE(sync_pb::SyncEnums, RECONFIGURATION);
|
| ENUM_CASE(sync_pb::SyncEnums, GU_TRIGGER);
|
| + ENUM_CASE(sync_pb::SyncEnums, RETRY);
|
| }
|
| NOTREACHED();
|
| return "";
|
|
|