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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 213513002: Add Description of Omnibox.UserTextCleared Histogram (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
« 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: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 768c4a104f84115b7f6f0846743dd069d07127b7..e86ee8eb137c6e5d53ba8a030113f80303db3f3d 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -15496,6 +15496,23 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="Omnibox.UserTextCleared" enum="OmniboxUserTextCleared">
+ <owner>mpearson@chromium.org</owner>
+ <summary>
+ Counts the number of times that the user text is cleared. IME users are
+ sometimes in the situation that IME was unintentionally turned on and failed
+ to input latin alphabets (ASCII characters) or the opposite case. In that
+ case, users may delete all the text and the user text gets cleared. This
+ histogram helps us estimate how often this scenario happens.
+
+ Note that since we don't currently correlate &quot;text cleared&quot; events
+ with IME usage, this also captures many other cases where users clear the
+ text; though it explicitly doesn't log deleting all the permanent text as
+ the first action of an editing sequence (see comments in
+ OnAfterPossibleChange()).
+ </summary>
+</histogram>
+
<histogram name="Omnibox.ZeroSuggest.MostVisitedResultsCounterfactual">
<owner>hfung@chromium.org</owner>
<summary>
@@ -35514,6 +35531,11 @@ other types of suffix sets.
<int value="3" label="(non-invalidated) replies received"/>
</enum>
+<enum name="OmniboxUserTextCleared" type="int">
+ <int value="0" label="cleared by editing"/>
+ <int value="1" label="cleared with escape"/>
+</enum>
+
<enum name="OmniboxZeroSuggestRequests" type="int">
<int value="1" label="requests sent"/>
<int value="2" label="requests invalidated"/>
« 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