| OLD | NEW |
| 1 // Copyright 2009 Google Inc. All Rights Reserved. | 1 // Copyright 2009 Google Inc. All Rights Reserved. |
| 2 // Author: morgwai@google.com (Morgwai Kotarbinski) | 2 // Author: morgwai@google.com (Morgwai Kotarbinski) |
| 3 // | 3 // |
| 4 // Basic messages used by all systems (extension, feedbackserver, | 4 // Basic messages used by all systems (extension, feedbackserver, |
| 5 // silver-bullet clustering, android etc). | 5 // silver-bullet clustering, android etc). |
| 6 | 6 |
| 7 syntax = "proto2"; | 7 syntax = "proto2"; |
| 8 | 8 |
| 9 option optimize_for = LITE_RUNTIME; | 9 option optimize_for = LITE_RUNTIME; |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 optional string source_description_language = 5 [ default = "en" ]; | 21 optional string source_description_language = 5 [ default = "en" ]; |
| 22 optional string ui_language = 6 [ default = "en_US" ]; | 22 optional string ui_language = 6 [ default = "en_US" ]; |
| 23 | 23 |
| 24 optional string user_email = 3; | 24 optional string user_email = 3; |
| 25 | 25 |
| 26 // Unique identifier of feedback report. If set than only one report | 26 // Unique identifier of feedback report. If set than only one report |
| 27 // with the same identifier is stored in the system. | 27 // with the same identifier is stored in the system. |
| 28 // If you are not sure how to use it leave it not set. | 28 // If you are not sure how to use it leave it not set. |
| 29 optional string unique_report_identifier = 7; | 29 optional string unique_report_identifier = 7; |
| 30 }; | 30 }; |
| OLD | NEW |