diff options
Diffstat (limited to 'chrome/browser/userfeedback/proto/common.proto')
-rw-r--r-- | chrome/browser/userfeedback/proto/common.proto | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/browser/userfeedback/proto/common.proto b/chrome/browser/userfeedback/proto/common.proto index 97c60fb..291e6a1 100644 --- a/chrome/browser/userfeedback/proto/common.proto +++ b/chrome/browser/userfeedback/proto/common.proto @@ -16,7 +16,13 @@ message CommonData { // Description of the problem entered by user. optional string description = 2; optional string description_translated = 4; - optional string source_descripton_language = 5 [ default = "en" ]; + optional string source_description_language = 5 [ default = "en" ]; + optional string ui_language = 6 [ default = "en_US" ]; optional string user_email = 3; + + // Unique identifier of feedback report. If set than only one report + // with the same identifier is stored in the system. + // If you are not sure how to use it leave it not set. + optional string unique_report_identifier = 7; }; |