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

Side-by-side diff isn't available for this file because of its large size.
Issue 1031573002: Keeps the histograms in sync with the IME extension code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« 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 4d36619ab5c661fca1ebe7526473152b376d5933..1740a2a4a05ccca191044947ff982a95d575a531 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -11747,6 +11747,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<histogram name="InputMethod.Commit.Type" enum="IMECommitType">
<owner>shuchen@chromium.org</owner>
<summary>
+ The suggestion accuracy type which the user chooses to commit. This is
+ obsolete.
Ilya Sherman 2015/03/24 03:51:06 nit: Please use an <obsolete> tag, and mention the
Shu Chen 2015/03/24 03:58:15 Done.
+ </summary>
+</histogram>
+
+<histogram name="InputMethod.Commit.Type2" enum="IMECommitType2">
+ <owner>shuchen@chromium.org</owner>
+ <summary>
The suggestion accuracy type which the user chooses to commit.
</summary>
</histogram>
@@ -11777,7 +11785,7 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
-<histogram name="InputMethod.PkCommit.Type" enum="IMECommitType">
+<histogram name="InputMethod.PkCommit.Type" enum="IMECommitType2">
<owner>shuchen@chromium.org</owner>
<summary>
The suggestion accuracy type which the user chooses to commit for physical
@@ -51621,6 +51629,32 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</int>
</enum>
+<enum name="IMECommitType2" type="int">
+ <int value="0" label="X -&gt; X(0)">
+ Types X, commits X as the top suggestion.
+ </int>
+ <int value="1" label="X -&gt; Y(0)">
+ Types X, commits Y as the top suggestion.
+ </int>
+ <int value="2" label="X -&gt; X(1)">
+ Types X, commits X as the 2nd suggestion.
+ </int>
+ <int value="3" label="X -&gt; Y(1)">
+ Types X, commits Y as the 2nd suggestion.
+ </int>
+ <int value="4" label="X -&gt; X(2)">
+ Types X, commits X as the 3rd/other suggestion.
+ </int>
+ <int value="5" label="X -&gt; Y(2)">
+ Types X, commits Y as the 3rd/other suggestion.
+ </int>
+ <int value="6" label="Prediction">Commits a prediction suggestion.</int>
+ <int value="7" label="Revert">
+ Reverts the previous auto-corrected and committed word.
+ </int>
+ <int value="8" label="Voice">The commit is triggered by voice input.</int>
+</enum>
+
<enum name="IMECorrectionLevel" type="int">
<int value="0" label="Off"/>
<int value="1" label="Modest"/>
« 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