Commit 8b5c11a0 authored by mpearson@chromium.org's avatar mpearson@chromium.org

Update OmniboxEvent Proto File

To correspond to changes made in internal change 70990265.

BUG=

Review URL: https://codereview.chromium.org/399433002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284214 0039d316-1c4b-4281-b951-d872f2087c98
parent 63d15fef
...@@ -126,6 +126,15 @@ message OmniboxEventProto { ...@@ -126,6 +126,15 @@ message OmniboxEventProto {
// omnibox before the user started editing it, not the search terms. // omnibox before the user started editing it, not the search terms.
SEARCH_RESULT_PAGE_NO_SEARCH_TERM_REPLACEMENT = 9; 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 // When adding new classifications, please consider adding them in
// chrome/browser/resources/omnibox/omnibox.html // chrome/browser/resources/omnibox/omnibox.html
// so that these new options are displayed on about:omnibox. // so that these new options are displayed on about:omnibox.
...@@ -155,7 +164,7 @@ message OmniboxEventProto { ...@@ -155,7 +164,7 @@ message OmniboxEventProto {
} }
// The result set displayed on the completion popup // The result set displayed on the completion popup
// Next tag: 6 // Next tag: 7
message Suggestion { message Suggestion {
// Where does this result come from? // Where does this result come from?
optional ProviderType provider = 1; optional ProviderType provider = 1;
...@@ -220,6 +229,9 @@ message OmniboxEventProto { ...@@ -220,6 +229,9 @@ message OmniboxEventProto {
// Whether this item is starred (bookmarked) or not. // Whether this item is starred (bookmarked) or not.
optional bool is_starred = 4; optional bool is_starred = 4;
// Whether this item is disabled in the UI (not clickable).
optional bool is_disabled = 6;
} }
repeated Suggestion suggestion = 9; repeated Suggestion suggestion = 9;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment