| 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_IME_IME_SWITCH_TYPE_H_ | |
| 6 #define ASH_IME_IME_SWITCH_TYPE_H_ | |
| 7 | |
| 8 namespace ash { | |
| 9 | |
| 10 // Used for histograms. See tools/metrics/histograms/enums.xml IMESwitchType. | |
| 11 enum class ImeSwitchType { | |
| 12 // The values should not reordered or deleted and new entries should only be | |
| 13 // added at the end (otherwise it will cause problems interpreting logs) | |
| 14 kTray = 0, | |
| 15 kAccelerator = 1, | |
| 16 kCount = 2, | |
| 17 }; | |
| 18 | |
| 19 } // namespace ash | |
| 20 | |
| 21 #endif // ASH_IME_IME_SWITCH_TYPE_H_ | |
| OLD | NEW |