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

Unified Diff: components/sync/protocol/user_event_specifics.proto

Issue 2942703002: [Sync] Make children messages of UserEventSpecifics' consistent use event suffix. (Closed)
Patch Set: Rebase Created 3 years, 6 months 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: components/sync/protocol/user_event_specifics.proto
diff --git a/components/sync/protocol/user_event_specifics.proto b/components/sync/protocol/user_event_specifics.proto
index 8bc41a74f7734a4f17981b63d244ee5711f6dc19..a2648f0b9851eed92b8c7a58320580309629f01c 100644
--- a/components/sync/protocol/user_event_specifics.proto
+++ b/components/sync/protocol/user_event_specifics.proto
@@ -13,12 +13,12 @@ option optimize_for = LITE_RUNTIME;
package sync_pb;
-message FieldTrialEvent {
- message FieldTrial {
+message FieldTrial {
+ message FieldTrialPair {
optional fixed32 name_id = 1;
optional fixed32 group_id = 2;
}
- repeated FieldTrial field_trials = 1;
+ repeated FieldTrialPair field_trial_pairs = 1;
}
// Language detection output.
@@ -88,9 +88,9 @@ message UserEventSpecifics {
message Test {}
oneof event {
- Test test = 8;
- FieldTrialEvent field_trial_event = 9;
- LanguageDetection language_detection = 10;
- Translation translation = 11;
+ Test test_event = 8;
+ FieldTrial field_trial_event = 9;
+ LanguageDetection language_detection_event = 10;
+ Translation translation_event = 11;
}
}
« no previous file with comments | « components/sync/protocol/proto_visitors.h ('k') | components/translate/core/common/language_detection_logging_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698