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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2689803002: Ensure nearby URL count metric is properly initialized (Closed)
Patch Set: fix errors Created 3 years, 10 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 10a462fc7dd2b11959222cb84f0f8cbc6ac321e1..d730dc604d3989aa704252dbf2e2d996831e94f7 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -42940,6 +42940,20 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Omnibox.PhysicalWebProvider.SuggestionUsedWithoutOmniboxFocus"
+ enum="Boolean">
+ <owner>cco3@chromium.org</owner>
+ <owner>mattreynolds@chromium.org</owner>
+ <owner>mmocny@chromium.org</owner>
+ <summary>
+ Records a boolean value indicating whether the Physical Web provider was
+ invoked by focusing the omnibox during the current omnibox session. This is
+ unexpected; it's probably a bug somwhere. Recorded when the user selects an
+ omnibox suggestion. Does not record when the Physical Web omnibox provider
+ is disabled.
+ </summary>
+</histogram>
+
<histogram name="Omnibox.PhysicalWebProviderMatches">
<owner>cco3@chromium.org</owner>
<owner>mattreynolds@chromium.org</owner>
@@ -43093,13 +43107,39 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Omnibox.SuggestionUsed.NearbyURLCount" units="URLs">
+ <obsolete>
+ Deprecated in M58, replaced with
+ Omnibox.SuggestionUsed.NearbyURLCount.AtFocus and
+ Omnibox.SuggestionUsed.NearbyURLCount.AtMatchCreation.
+ </obsolete>
Mark P 2017/02/23 05:09:49 Please leave the original description. (maybe revi
mattreynolds 2017/02/23 19:42:14 Done.
+</histogram>
+
+<histogram name="Omnibox.SuggestionUsed.NearbyURLCount.AtFocus" units="URLs">
+ <owner>cco3@chromium.org</owner>
+ <owner>mattreynolds@chromium.org</owner>
+ <owner>mmocny@chromium.org</owner>
+ <summary>
+ The number of nearby Physical Web URLs when Physical Web Provider was last
+ focused (i.e., the start of the current session). Recorded when the user
+ accepts an omnibox suggestion, regardless of whether the suggestion came
+ from PhysicalWebProvider. Capped at 50.
+
+ Does not record if the omnibox was not focused during the current session.
+ Omnibox.PhysicalWebProvider.SuggestionUsedWithoutOmniboxFocus records true
+ when we hit this case.
+ </summary>
+</histogram>
+
+<histogram name="Omnibox.SuggestionUsed.NearbyURLCount.AtMatchCreation"
+ units="URLs">
<owner>cco3@chromium.org</owner>
<owner>mattreynolds@chromium.org</owner>
<owner>mmocny@chromium.org</owner>
<summary>
- The number of nearby Physical Web URLs when the user focused the omnibox.
- Recorded when the user accepts an omnibox suggestion, regardless of whether
- the suggestion came from PhysicalWebProvider. Capped at 50.
+ The number of nearby Physical Web URLs when Physical Web Provider last
+ constructed matches. Recorded when the user accepts an omnibox suggestion,
+ regardless of whether the suggestion came from PhysicalWebProvider. Capped
+ at 50.
</summary>
</histogram>

Powered by Google App Engine
This is Rietveld 408576698