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

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 2755503002: Add a new entry to omnibox_event.proto to log specific type of contextual suggestions (Closed)
Patch Set: Created 3 years, 9 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:
Download patch
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 3670e9d20f50d763404c55cd8b62b1dead75b309..f19a1422f6aa09b7d0556f182a7f2ebb14f50bb1 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -80030,6 +80030,24 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="ZeroSuggest.ContextualSuggestType.SuggestionsProvided"
+ enum="ZeroSuggestContextualSuggestionType">
+ <owner>gcomanici@chromium.org</owner>
+ <summary>
+ Records the specific type of every contextual zero suggest suggestion that
+ was provided to users.
+ </summary>
+</histogram>
+
+<histogram name="ZeroSuggest.ContextualSuggestType.SuggestionUsed"
+ enum="ZeroSuggestContextualSuggestionType">
+ <owner>gcomanici@chromium.org</owner>
+ <summary>
+ Records the specific type of every contextual zero suggest suggestion that
+ was selected by users.
+ </summary>
+</histogram>
+
<histogram name="ZeroSuggest.QueryResults">
<owner>hfung@chromium.org</owner>
<summary>
@@ -114353,6 +114371,35 @@ from previous Chrome versions.
</int>
</enum>
+<enum name="ZeroSuggestContextualSuggestionType" type="int">
+ <summary>
+ Describes the type of a contextual suggestion provided to zero suggest.
+ </summary>
+ <int value="0" label="NOT_SET">The suggestion type was not set.</int>
+ <int value="1" label="COOCCURENCE_PAGE">Cooccurence page.</int>
+ <int value="2" label="HIVEMIND_URL">Hivemind URL.</int>
+ <int value="3" label="LOCAL_STORE_MAP">
+ Map corresponding to a local store.
+ </int>
+ <int value="4" label="LOCAL_STORE_WEBPAGE">
+ The main webpage of a local store.
+ </int>
+ <int value="5" label="LOCAL_STORE_RESERVATION">
+ The main webpage of a local store.
+ </int>
+ <int value="6" label="MOVIE_REVIEW">Review for a movie or TV series.</int>
+ <int value="7" label="MOVIE_SHOWTIME">
+ Showtimes for a movie in the cinemas.
+ </int>
+ <int value="8" label="ON_THE_NEWS">Related news article.</int>
+ <int value="9" label="POPULAR_DOMAINS">Popular page domains.</int>
+ <int value="10" label="SIMILAR_PAGES">Similar pages.</int>
+ <int value="11" label="TOP_ENTITY_INFO">Information on a top entity.</int>
+ <int value="12" label="OTHER">
+ Any other type that is not represented by any of the types listed.
+ </int>
+</enum>
+
<enum name="ZeroSuggestEligibleOnFocus" type="int">
<int value="0" label="Eligible">
URL can be currently sent to the suggest server.

Powered by Google App Engine
This is Rietveld 408576698