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

Unified Diff: components/metrics/proto/omnibox_event.proto

Issue 399433002: Update OmniboxEvent Proto File (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/proto/omnibox_event.proto
diff --git a/components/metrics/proto/omnibox_event.proto b/components/metrics/proto/omnibox_event.proto
index fc8b70af7a57b74e921bef2adf212e1dcc9dc282..bd619f002101c99ef5b1a436a23ba55d918368c0 100644
--- a/components/metrics/proto/omnibox_event.proto
+++ b/components/metrics/proto/omnibox_event.proto
@@ -126,6 +126,15 @@ message OmniboxEventProto {
// omnibox before the user started editing it, not the search terms.
SEARCH_RESULT_PAGE_NO_SEARCH_TERM_REPLACEMENT = 9;
+ // The user is on the home screen.
+ APP_HOME = 10;
+
+ // The user is in the search app.
+ APP_SEARCH = 11;
+
+ // The user is in the maps app.
+ APP_MAPS = 12;
+
// When adding new classifications, please consider adding them in
// chrome/browser/resources/omnibox/omnibox.html
// so that these new options are displayed on about:omnibox.
@@ -155,7 +164,7 @@ message OmniboxEventProto {
}
// The result set displayed on the completion popup
- // Next tag: 6
+ // Next tag: 7
message Suggestion {
// Where does this result come from?
optional ProviderType provider = 1;
@@ -220,6 +229,9 @@ message OmniboxEventProto {
// Whether this item is starred (bookmarked) or not.
optional bool is_starred = 4;
+
+ // Whether this item is disabled in the UI (not clickable).
+ optional bool is_disabled = 6;
}
repeated Suggestion suggestion = 9;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698