1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
7 option optimize_for = LITE_RUNTIME;
11 // Chrome Browser and Chrome OS specific data.
13 // Encapsulates the priorities of Buganizer issues.
19 // What platform has a report been sent from.
20 optional ChromePlatform chrome_platform = 1 [default = CHROME_OS];
22 optional ChromeOsData chrome_os_data = 2;
24 optional ChromeBrowserData chrome_browser_data = 3;
27 message ChromeOsData {
28 enum ChromeOsCategory {
32 PAGE_FORMATTING_OR_LAYOUT = 4;
33 EXTENSIONS_OR_APPS = 5;
34 STANDBY_OR_RESUME = 6;
40 optional ChromeOsCategory category = 1 [default = OTHER];
43 message ChromeBrowserData{
45 enum ChromeBrowserCategory {
46 PAGE_FORMATTING_OR_LAYOUT = 1;
47 PAGES_NOT_LOADING = 2;
50 SYNCED_PREFERENCES = 5;
52 EXTENSIONS_OR_APPS = 7;
58 optional ChromeBrowserCategory category = 1 [default = OTHER];