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

Side by Side Diff: ash/ime/ime_switch_type.h

Issue 2891263002: chromeos: Remove some IME methods from ash::SystemTrayDelegate (Closed)
Patch Set: cleanup 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 unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698