diff options
author | mpearson@chromium.org <mpearson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-28 19:33:46 +0000 |
---|---|---|
committer | mpearson@chromium.org <mpearson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-28 19:33:46 +0000 |
commit | c07e0d2d9ebc196ac89b3d40e21ca36b2923c3da (patch) | |
tree | 5a84883b44b02d5f3dcdf7f933deb8869ce2d268 /tools/metrics | |
parent | 20dcc1a06e2e5620d051a53846b6ab44b03014fc (diff) | |
download | chromium_src-c07e0d2d9ebc196ac89b3d40e21ca36b2923c3da.zip chromium_src-c07e0d2d9ebc196ac89b3d40e21ca36b2923c3da.tar.gz chromium_src-c07e0d2d9ebc196ac89b3d40e21ca36b2923c3da.tar.bz2 |
Add Description of Omnibox.UserTextCleared Histogram
BUG=
Review URL: https://codereview.chromium.org/213513002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@260240 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/metrics')
-rw-r--r-- | tools/metrics/histograms/histograms.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml index 5301986..8201625 100644 --- a/tools/metrics/histograms/histograms.xml +++ b/tools/metrics/histograms/histograms.xml @@ -16023,6 +16023,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 "text cleared" 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> @@ -36661,6 +36678,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"/> |