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

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

Issue 2068004: Commiting http://codereview.chromium.org/2017007/show on behalf of rkc@chromi... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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 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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698