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

Side by Side Diff: chrome/browser/userfeedback/proto/web.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: jaceks@google.com (Jacek Surazski) 2 // Author: jaceks@google.com (Jacek Surazski)
3 3
4 syntax = "proto2"; 4 syntax = "proto2";
5 5
6 package userfeedback; 6 package userfeedback;
7 7
8 // Data present in Web related feedbacks 8 // Data present in Web related feedbacks
9 9
10 import "annotations.proto"; 10 import "annotations.proto";
11 import "config.proto";
12 import "dom.proto"; 11 import "dom.proto";
13 import "math.proto"; 12 import "math.proto";
14 13
15 // Data present in feedbacks sent from web extension. 14 // Data present in feedbacks sent from web extension.
16 message WebData { 15 message WebData {
17 // Data captured from DOM Navigator object. 16 // Data captured from DOM Navigator object.
18 optional Navigator navigator = 1; 17 optional Navigator navigator = 1;
19 18
20 // Details of the extension from which this data was sent. 19 // Details of the extension from which this data was sent.
21 optional ExtensionDetails extension_details = 2; 20 optional ExtensionDetails extension_details = 2;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 // immediately. 60 // immediately.
62 optional bool DEPRECATED_urgent = 3 [default = false]; 61 optional bool DEPRECATED_urgent = 3 [default = false];
63 }; 62 };
64 63
65 // Product specific data. Contains one key/value pair that is specific to the 64 // Product specific data. Contains one key/value pair that is specific to the
66 // product for which feedback is submitted. 65 // product for which feedback is submitted.
67 message ProductSpecificData { 66 message ProductSpecificData {
68 required string key = 1; 67 required string key = 1;
69 optional string value = 2; 68 optional string value = 2;
70 }; 69 };
OLDNEW
« no previous file with comments | « chrome/browser/userfeedback/proto/extension.proto ('k') | chrome/browser/views/browser_dialogs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698