common.proto 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. // Copyright 2014 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. // Basic messages used by all systems (extension, feedbackserver,
  5. // silver-bullet clustering, android etc).
  6. syntax = "proto2";
  7. option optimize_for = LITE_RUNTIME;
  8. package userfeedback;
  9. // Data present in all kinds of feedbacks, regardless of source (Web, Android,
  10. // other).
  11. message CommonData {
  12. optional fixed64 gaia_id = 1;
  13. // Description of the problem entered by user.
  14. optional string description = 2;
  15. optional string description_translated = 4;
  16. optional string source_description_language = 5 [ default = "en" ];
  17. optional string ui_language = 6 [ default = "en_US" ];
  18. optional string user_email = 3;
  19. // Unique identifier of feedback report. If set than only one report
  20. // with the same identifier is stored in the system.
  21. // If you are not sure how to use it leave it not set.
  22. optional string unique_report_identifier = 7;
  23. };