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

Unified Diff: chrome/browser/feedback/proto/chrome.proto

Issue 225183018: Move feedback files into src/components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to latest Created 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/feedback/proto/chrome.proto
diff --git a/chrome/browser/feedback/proto/chrome.proto b/chrome/browser/feedback/proto/chrome.proto
deleted file mode 100644
index c721b0691852f2b2b817adead5997ce98f67d8b9..0000000000000000000000000000000000000000
--- a/chrome/browser/feedback/proto/chrome.proto
+++ /dev/null
@@ -1,60 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-syntax = "proto2";
-
-option optimize_for = LITE_RUNTIME;
-
-package userfeedback;
-
-// Chrome Browser and Chrome OS specific data.
-message ChromeData {
- // Encapsulates the priorities of Buganizer issues.
- enum ChromePlatform {
- CHROME_OS = 1;
- CHROME_BROWSER = 2;
- }
-
- // What platform has a report been sent from.
- optional ChromePlatform chrome_platform = 1 [default = CHROME_OS];
-
- optional ChromeOsData chrome_os_data = 2;
-
- optional ChromeBrowserData chrome_browser_data = 3;
-}
-
-message ChromeOsData {
- enum ChromeOsCategory {
- CONNECTIVITY = 1;
- SYNC = 2;
- CRASH = 3;
- PAGE_FORMATTING_OR_LAYOUT = 4;
- EXTENSIONS_OR_APPS = 5;
- STANDBY_OR_RESUME = 6;
- PHISHING_PAGE = 7;
- OTHER = 8;
- AUTOFILL = 9;
- }
-
- optional ChromeOsCategory category = 1 [default = OTHER];
-}
-
-message ChromeBrowserData{
-
- enum ChromeBrowserCategory {
- PAGE_FORMATTING_OR_LAYOUT = 1;
- PAGES_NOT_LOADING = 2;
- PLUGINS = 3;
- TABS_OR_WINDOWS = 4;
- SYNCED_PREFERENCES = 5;
- CRASH = 6;
- EXTENSIONS_OR_APPS = 7;
- PHISHING_PAGE = 8;
- OTHER = 9;
- AUTOFILL = 10;
- }
-
- optional ChromeBrowserCategory category = 1 [default = OTHER];
-}
-

Powered by Google App Engine
This is Rietveld 408576698