diff options
author | fadih@chromium.org <fadih@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-09 15:05:47 +0000 |
---|---|---|
committer | fadih@chromium.org <fadih@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-09 15:05:47 +0000 |
commit | 78981d8cb154be542388831486f8f526ec942a33 (patch) | |
tree | 1a0306cef2f99b7eef633ab9031514a462235571 /components/metrics | |
parent | a23c90f5148f7082b45eb4742fc4e7120540eff4 (diff) | |
download | chromium_src-78981d8cb154be542388831486f8f526ec942a33.zip chromium_src-78981d8cb154be542388831486f8f526ec942a33.tar.gz chromium_src-78981d8cb154be542388831486f8f526ec942a33.tar.bz2 |
In order to support personal url suggestion
*Added a personal URL type
*move delete url to base struct to the Result instead o SuggestResult
*The personal URL suggestion will be handled same as navigation suggestion, as it will support delete.
BUG=367746
Review URL: https://codereview.chromium.org/256093007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@269303 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/metrics')
-rw-r--r-- | components/metrics/proto/omnibox_event.proto | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/components/metrics/proto/omnibox_event.proto b/components/metrics/proto/omnibox_event.proto index 7829297..cb87c8a 100644 --- a/components/metrics/proto/omnibox_event.proto +++ b/components/metrics/proto/omnibox_event.proto @@ -185,27 +185,32 @@ message OmniboxEventProto { SEARCH_HISTORY = 8; // A past search (with the default engine) // containing the input SEARCH_SUGGEST = 9; // A suggested search (with the default - // engine) query that doesn't fall into one of - // the more specific suggestion categories - // below. + // engine) for a query. SEARCH_OTHER_ENGINE = 10; // A search with a non-default engine EXTENSION_APP = 11; // An Extension App with a title/url that // contains the input - CONTACT = 12; // DEPRECATED. One of the user's contacts + CONTACT = 12; // One of the user's contacts BOOKMARK_TITLE = 13; // A bookmark whose title contains the input. SEARCH_SUGGEST_ENTITY = 14; // A suggested search for an entity. SEARCH_SUGGEST_INFINITE = 15; // A suggested search to complete the tail // of the query. SEARCH_SUGGEST_PERSONALIZED = 16; // A personalized suggested search. - SEARCH_SUGGEST_PROFILE = 17; // A personalized suggested search for a - // Google+ profile. - APP_RESULT = 18; // Result from an installed app - // (eg: a gmail email). - // Used by Android GSA for on-device - // suggestion logging. - APP = 19; // An app result (eg: the gmail app). - // Used by Android GSA for on-device - // suggestion logging. + SEARCH_SUGGEST_PROFILE = 17; // A personalized suggested search for a + // Google+ profile. + APP_RESULT = 18; // Result from an installed app + // (eg: a gmail email). + // Used by Android GSA for on-device + // suggestion logging. + APP = 19; // An app result (eg: the gmail app). + // Used by Android GSA for on-device + // suggestion logging. + LEGACY_ON_DEVICE = 20; // An on-device result from a legacy + // provider. That is, this result is not + // from the on-device suggestion provider + // (go/icing). This field is + // used by Android GSA for on-device + // suggestion logging. + NAVSUGGEST_PERSONALIZED = 21; // A personalized url. } optional ResultType result_type = 2; |