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

Side by Side Diff: chrome/browser/userfeedback/proto/chrome.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 2011 Google Inc. All Rights Reserved.
2 // Author: marcinm@google.com (Marcin Mikosik)
3
4 syntax = "proto2";
5
6 option optimize_for = LITE_RUNTIME;
7
8 package userfeedback;
9
10 // Chrome Browser and Chrome OS specific data.
11 message ChromeData {
12 // Encapsulates the priorities of Buganizer issues.
13 enum ChromePlatform {
14 CHROME_OS = 1;
15 CHROME_BROWSER = 2;
16 }
17
18 // What platform has a report been sent from.
19 optional ChromePlatform chrome_platform = 1 [default = CHROME_OS];
20
21 optional ChromeOsData chrome_os_data = 2;
22
23 optional ChromeBrowserData chrome_browser_data = 3;
24 }
25
26 message ChromeOsData {
27 enum ChromeOsCategory {
28 CONNECTIVITY = 1;
29 SYNC = 2;
30 CRASH = 3;
31 PAGE_FORMATTING_OR_LAYOUT = 4;
32 EXTENSIONS_OR_APPS = 5;
33 STANDBY_OR_RESUME = 6;
34 PHISHING_PAGE = 7;
35 OTHER = 8;
36 AUTOFILL = 9;
37 }
38
39 optional ChromeOsCategory category = 1 [default = OTHER];
40 }
41
42 message ChromeBrowserData{
43
44 enum ChromeBrowserCategory {
45 PAGE_FORMATTING_OR_LAYOUT = 1;
46 PAGES_NOT_LOADING = 2;
47 PLUGINS = 3;
48 TABS_OR_WINDOWS = 4;
49 SYNCED_PREFERENCES = 5;
50 CRASH = 6;
51 EXTENSIONS_OR_APPS = 7;
52 PHISHING_PAGE = 8;
53 OTHER = 9;
54 AUTOFILL = 10;
55 }
56
57 optional ChromeBrowserCategory category = 1 [default = OTHER];
58 }
59
OLDNEW
« no previous file with comments | « chrome/browser/userfeedback/proto/annotations.proto ('k') | chrome/browser/userfeedback/proto/common.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698