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

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

Issue 387903003: Add metrics for tracking UX impact of non-static CLD data providers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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:
View side-by-side diff with in-line comments
Download patch
Index: tools/metrics/actions/actions.xml
diff --git a/tools/metrics/actions/actions.xml b/tools/metrics/actions/actions.xml
index 2053434bd4baf533eecc6c67195cf11bf18b68bd..e480af8b9c419e420fb6a964bdb983130cdf241e 100644
--- a/tools/metrics/actions/actions.xml
+++ b/tools/metrics/actions/actions.xml
@@ -10886,6 +10886,33 @@ should be able to be added at any place in this file.
<description>Please enter the description of this user action.</description>
</action>
+<action name="Translate.LanguageDetectionDeferred">
+ <owner>andrewhayden@chromium.org</owner>
+ <description>
+ Recorded if PageCaptured(...) is invoked before CLD is available.
+ Sub-optimal case indicating that CLD wasn't available when it was needed, so
+ the request for detection has been deferred until CLD is available or until
+ the user navigates to a different page.
+ </description>
+</action>
+
+<action name="Translate.LanguageDetectionLate">
+ <owner>andrewhayden@chromium.org</owner>
+ <description>
+ Recorded if CLD becomes available after a language detection request was
+ deferred as above in (2), but before the user navigated to a different page.
simonb1 2014/07/14 16:23:48 Strike 'as above in (2)'.
+ Language detection is ultimately completed, it just didn't happen on time.
+ </description>
+</action>
+
+<action name="Translate.LanguageDetectionOnTime">
+ <owner>andrewhayden@chromium.org</owner>
+ <description>
+ Recorded if PageCaptured(...) is invoked after CLD is available. This is the
+ ideal case, indicating that CLD is available before it is needed.
+ </description>
+</action>
+
<action name="Transpose">
<owner>Please list the metric's owners. Add more owner tags as needed.</owner>
<description>Please enter the description of this user action.</description>

Powered by Google App Engine
This is Rietveld 408576698