Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef ASH_METRICS_VOICE_INTERACTION_METRICS_H_ | |
| 6 #define ASH_METRICS_VOICE_INTERACTION_METRICS_H_ | |
| 7 | |
| 8 namespace ash { | |
| 9 | |
| 10 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
| |
| 11 META_SHIFT_A = 0, | |
| 12 // Note: add items immediately above this line. | |
| 13 COUNT | |
| 14 }; | |
| 15 | |
| 16 enum class VoiceInteractionEntry { | |
| 17 META_A = 0, | |
| 18 META_SPACE, | |
| 19 LONG_PRESS_APP_LIST_BUTTON, | |
| 20 // Note: add items immediately above this line. | |
| 21 COUNT | |
| 22 }; | |
| 23 | |
| 24 } // namespace ash | |
| 25 | |
| 26 #endif // ASH_METRICS_VOICE_INTERACTION_METRICS_H_ | |
| OLD | NEW |