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

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

Issue 606553002: Adds some UMA log entries for input methods. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revised per comments Created 6 years, 3 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 eb6bfcffcc9a4d906377862b5a0009de9715ef3a..860a8d57586a717d0f993a0f4131e14efbcf1e1b 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -9905,6 +9905,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="InputMethod.AutoCorrectLevel" enum="IMECorrectionLevel">
+ <owner>shuchen@chromium.org</owner>
+ <summary>The auto-correction level for suggestion engine.</summary>
+</histogram>
+
<histogram name="InputMethod.Category" enum="InputMethodCategory">
<owner>shuchen@chromium.org</owner>
<summary>
@@ -9939,6 +9944,28 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="InputMethod.VirtualKeyboard.BackspaceCount">
+ <owner>shuchen@chromium.org</owner>
+ <summary>
+ The number of times the backspace key was pressed on the virtual keyboard,
+ while the virtual keyboard was alive. Recorded when the virtual keyboard is
+ closed.
+ </summary>
+</histogram>
+
+<histogram name="InputMethod.VirtualKeyboard.BackspaceOnLayout"
+ enum="IMEVKLayout">
+ <owner>shuchen@chromium.org</owner>
+ <summary>
+ The layout type of the virtual keyboard, recorded when backspace is pressed.
+ </summary>
+</histogram>
+
+<histogram name="InputMethod.VirtualKeyboard.Duration" units="seconds">
+ <owner>shuchen@chromium.org</owner>
+ <summary>How long the virtual keyboard was visible.</summary>
+</histogram>
+
<histogram name="InputMethod.VirtualKeyboard.InitLatency" units="milliseconds">
<owner>shuchen@chromium.org</owner>
<summary>
@@ -43942,6 +43969,12 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</int>
</enum>
+<enum name="IMECorrectionLevel" type="int">
+ <int value="0" label="Off"/>
+ <int value="1" label="Modest"/>
+ <int value="2" label="Aggressive"/>
+</enum>
+
<enum name="IMEVKLayout" type="int">
<int value="0" label="Compact"/>
<int value="1" label="CompactSymbol"/>
« 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