| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2009 Google Inc. All Rights Reserved. |
| 2 // Author: morgwai@google.com (Morgwai Kotarbinski) |
| 3 // |
| 4 // Basic messages used by all systems (extension, feedbackserver, |
| 5 // silver-bullet clustering, android etc). |
| 6 |
| 7 syntax = "proto2"; |
| 8 |
| 9 package userfeedback; |
| 10 |
| 11 // Data present in all kinds of feedbacks, regardless of source (Web, Android, |
| 12 // other). |
| 13 message CommonData { |
| 14 optional fixed64 gaia_id = 1; |
| 15 |
| 16 // Description of the problem entered by user. |
| 17 optional string description = 2; |
| 18 optional string description_translated = 4; |
| 19 optional string source_descripton_language = 5 [ default = "en" ]; |
| 20 |
| 21 optional string user_email = 3; |
| 22 }; |
| OLD | NEW |