| OLD | NEW |
| 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"; |
| 11 | 11 |
| 12 option optimize_for = LITE_RUNTIME; | 12 option optimize_for = LITE_RUNTIME; |
| 13 | 13 |
| 14 package sync_pb; | 14 package sync_pb; |
| 15 | 15 |
| 16 message FieldTrialEvent { | 16 message FieldTrialEvent { |
| 17 message FieldTrial { | 17 message FieldTrial { |
| 18 optional fixed32 name_id = 1; | 18 optional fixed32 name_id = 1; |
| 19 optional fixed32 group_id = 2; | 19 optional fixed32 group_id = 2; |
| 20 } | 20 } |
| 21 repeated FieldTrial field_trials = 1; | 21 repeated FieldTrial field_trials = 1; |
| 22 } | 22 } |
| 23 | 23 |
| 24 // Language detection output. |
| 25 message LanguageDetection { |
| 26 message Language { |
| 27 // ISO 639 language code will be used. |
| 28 optional string language_code = 1; |
| 29 // Whether the detected language is reliable, note this is determined by |
| 30 // the CLD3. |
| 31 optional bool is_reliable = 2; |
| 32 } |
| 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 |
| 35 // order. |
| 36 repeated Language detected_languages = 1; |
| 37 // Adopted language is the final determined language. |
| 38 // It will be stored only if it's different from the first detected language. |
| 39 optional string adopted_language = 2; |
| 40 } |
| 41 |
| 24 message UserEventSpecifics { | 42 message UserEventSpecifics { |
| 25 // Time of event, as measured on the client (unix epoch). | 43 // Time of event, as measured on the client (unix epoch). |
| 26 optional int64 event_time_usec = 1; | 44 optional int64 event_time_usec = 1; |
| 27 | 45 |
| 28 // The |global_id| field of the associated navigation, if there is one. | 46 // The |global_id| field of the associated navigation, if there is one. |
| 29 optional int64 navigation_id = 2; | 47 optional int64 navigation_id = 2; |
| 30 | 48 |
| 31 // On startup we generate a new random id to identify which FieldTrialEvents | 49 // On startup we generate a new random id to identify which FieldTrialEvents |
| 32 // other events belonged to. | 50 // other events belonged to. |
| 33 optional fixed64 session_id = 3; | 51 optional fixed64 session_id = 3; |
| 34 | 52 |
| 35 oneof event { FieldTrialEvent field_trial_event = 4; } | 53 oneof event { |
| 54 FieldTrialEvent field_trial_event = 4; |
| 55 LanguageDetection language_detection = 5; |
| 56 } |
| 36 } | 57 } |
| OLD | NEW |