| Index: sync/protocol/proto_enum_conversions.cc
|
| diff --git a/sync/protocol/proto_enum_conversions.cc b/sync/protocol/proto_enum_conversions.cc
|
| index af958222414b6369e28dd2900b121d42080423f4..b9df1e6bf2ca3857e7906166f505e51c0f9c6338 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 "";
|
|
|