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

Unified Diff: ash/metrics/voice_interaction_metrics.h

Issue 2900913002: add UMA metrics for voice interaction entries. (Closed)
Patch Set: add UMA metrics for voice interaction entries. Created 3 years, 7 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: ash/metrics/voice_interaction_metrics.h
diff --git a/ash/metrics/voice_interaction_metrics.h b/ash/metrics/voice_interaction_metrics.h
new file mode 100644
index 0000000000000000000000000000000000000000..d181799f5b39db740e645142f053c27e8050873e
--- /dev/null
+++ b/ash/metrics/voice_interaction_metrics.h
@@ -0,0 +1,26 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ASH_METRICS_VOICE_INTERACTION_METRICS_H_
+#define ASH_METRICS_VOICE_INTERACTION_METRICS_H_
+
+namespace ash {
+
+enum class VoiceInteractionMetaLayerEntry {
Daniel Erat 2017/05/23 22:32:18 i think it would make more sense to record these a
Muyuan 2017/05/24 00:24:54 Acknowledged. Uploaded a patch set to use user act
+ META_SHIFT_A = 0,
+ // Note: add items immediately above this line.
+ COUNT
+};
+
+enum class VoiceInteractionEntry {
+ META_A = 0,
+ META_SPACE,
+ LONG_PRESS_APP_LIST_BUTTON,
+ // Note: add items immediately above this line.
+ COUNT
+};
+
+} // namespace ash
+
+#endif // ASH_METRICS_VOICE_INTERACTION_METRICS_H_

Powered by Google App Engine
This is Rietveld 408576698