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

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

Issue 9006003: Refactor and fix feedback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 2011 -> 2012 Created 8 years, 11 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
(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 option optimize_for = LITE_RUNTIME;
10
11 package userfeedback;
12
13 // Data present in all kinds of feedbacks, regardless of source (Web, Android,
14 // other).
15 message CommonData {
16 optional fixed64 gaia_id = 1;
17
18 // Description of the problem entered by user.
19 optional string description = 2;
20 optional string description_translated = 4;
21 optional string source_description_language = 5 [ default = "en" ];
22 optional string ui_language = 6 [ default = "en_US" ];
23
24 optional string user_email = 3;
25
26 // Unique identifier of feedback report. If set than only one report
27 // with the same identifier is stored in the system.
28 // If you are not sure how to use it leave it not set.
29 optional string unique_report_identifier = 7;
30 };
OLDNEW
« no previous file with comments | « chrome/browser/userfeedback/proto/chrome.proto ('k') | chrome/browser/userfeedback/proto/config.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698