Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6293)

Unified Diff: chrome/browser/sync/syncable/syncable_enum_conversions.cc

Issue 8770032: [Sync] Implement encryption-aware conflict resolution. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/syncable/syncable_enum_conversions.cc
diff --git a/chrome/browser/sync/syncable/syncable_enum_conversions.cc b/chrome/browser/sync/syncable/syncable_enum_conversions.cc
index 0a371d97892d48849498094366f8d42d3f47843b..a22a1cfa82d6bcad968d93d5f731f5864dc42dd4 100644
--- a/chrome/browser/sync/syncable/syncable_enum_conversions.cc
+++ b/chrome/browser/sync/syncable/syncable_enum_conversions.cc
@@ -135,11 +135,12 @@ const char* GetStringFieldString(StringField string_field) {
}
const char* GetProtoFieldString(ProtoField proto_field) {
- ASSERT_ENUM_BOUNDS(SPECIFICS, SERVER_SPECIFICS,
+ ASSERT_ENUM_BOUNDS(SPECIFICS, BASE_SERVER_SPECIFICS,
PROTO_FIELDS_BEGIN, PROTO_FIELDS_END - 1);
switch (proto_field) {
ENUM_CASE(SPECIFICS);
ENUM_CASE(SERVER_SPECIFICS);
+ ENUM_CASE(BASE_SERVER_SPECIFICS);
case PROTO_FIELDS_END: break;
}
NOTREACHED();
« no previous file with comments | « chrome/browser/sync/syncable/syncable_columns.h ('k') | chrome/browser/sync/test/integration/two_client_sessions_sync_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698