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

Side by Side Diff: components/sync/protocol/user_event_specifics.proto

Issue 2911603002: Initial translation event proto. (Closed)
Patch Set: update fields. 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 unified diff | Download patch
« no previous file with comments | « components/sync/protocol/proto_visitors.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Sync protocol datatype extension for user events. 5 // Sync protocol datatype extension for user events.
6 6
7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change 7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change
8 // any fields in this file. 8 // any fields in this file.
9 9
10 syntax = "proto2"; 10 syntax = "proto2";
(...skipping 21 matching lines...) Expand all
32 } 32 }
33 // Top n languages. Typically we just log the top language, but for page that 33 // Top n languages. Typically we just log the top language, but for page that
34 // we're not confident about, we may log up to 3 top languages in descending 34 // we're not confident about, we may log up to 3 top languages in descending
35 // order. 35 // order.
36 repeated Language detected_languages = 1; 36 repeated Language detected_languages = 1;
37 // Adopted language code is the code of final determined language. 37 // Adopted language code is the code of final determined language.
38 // It will be stored only if it's different from the first detected language. 38 // It will be stored only if it's different from the first detected language.
39 optional string adopted_language_code = 2; 39 optional string adopted_language_code = 2;
40 } 40 }
41 41
42 // User translated a page or interacted with translate suggestion.
43 message Translation {
44 // Source language of the translation.
45 optional string from_language_code = 1;
46 // Target language of the translation.
47 optional string to_language_code = 2;
48 enum Interaction {
49 UNKNOWN = 0;
50 ACCEPT = 1;
51 DECLINE = 2;
52 // This happens when user scroll or click outside the UI without
53 // translation.
54 IGNORED = 3;
55 // This happens when user choose to close the translation window without
56 // translation.
57 DISMISSED = 4;
58 // User manually entered either language.
59 // In this case, from_language_code and to_language_code will be user chosen
60 // values.
61 MANUAL = 5;
62 // User choose to revert the translation, in this case, from_language_code
63 // and to_language_code will be previous chosen values.
64 TRANSLATION_REVERTED = 6;
65 // Automatically triggered translation.
66 AUTOMATIC_TRANSLATION = 7;
67 }
68 optional Interaction interaction = 3;
69 }
70
42 message UserEventSpecifics { 71 message UserEventSpecifics {
43 // Time of event, as measured on the client (unix epoch). 72 // Time of event, as measured on the client (unix epoch).
44 optional int64 event_time_usec = 1; 73 optional int64 event_time_usec = 1;
45 74
46 // The |global_id| field of the associated navigation, if there is one. 75 // The |global_id| field of the associated navigation, if there is one.
47 optional int64 navigation_id = 2; 76 optional int64 navigation_id = 2;
48 77
49 // On startup we generate a new random id to identify which FieldTrialEvents 78 // On startup we generate a new random id to identify which FieldTrialEvents
50 // other events belonged to. 79 // other events belonged to.
51 optional fixed64 session_id = 3; 80 optional fixed64 session_id = 3;
52 81
53 oneof event { 82 oneof event {
54 FieldTrialEvent field_trial_event = 4; 83 FieldTrialEvent field_trial_event = 4;
55 LanguageDetection language_detection = 5; 84 LanguageDetection language_detection = 5;
85 Translation translation = 6;
56 } 86 }
57 } 87 }
OLDNEW
« no previous file with comments | « components/sync/protocol/proto_visitors.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698