Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: chrome/browser/userfeedback/proto/common.proto

Issue 3061044: HTML UI implementation for the Google Feedback client for Chrome/ChromeOS.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 package userfeedback; 9 package userfeedback;
10 10
11 // Data present in all kinds of feedbacks, regardless of source (Web, Android, 11 // Data present in all kinds of feedbacks, regardless of source (Web, Android,
12 // other). 12 // other).
13 message CommonData { 13 message CommonData {
14 optional fixed64 gaia_id = 1; 14 optional fixed64 gaia_id = 1;
15 15
16 // Description of the problem entered by user. 16 // Description of the problem entered by user.
17 optional string description = 2; 17 optional string description = 2;
18 optional string description_translated = 4; 18 optional string description_translated = 4;
19 optional string source_descripton_language = 5 [ default = "en" ]; 19 optional string source_description_language = 5 [ default = "en" ];
20 optional string ui_language = 6 [ default = "en_US" ];
20 21
21 optional string user_email = 3; 22 optional string user_email = 3;
23
24 // Unique identifier of feedback report. If set than only one report
25 // with the same identifier is stored in the system.
26 // If you are not sure how to use it leave it not set.
27 optional string unique_report_identifier = 7;
22 }; 28 };
OLDNEW
« no previous file with comments | « chrome/browser/userfeedback/proto/chrome.proto ('k') | chrome/browser/userfeedback/proto/extension.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698