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

Side by Side Diff: chrome/browser/chromeos/input_method/input_method_switch_recorder.h

Issue 2891263002: chromeos: Remove some IME methods from ash::SystemTrayDelegate (Closed)
Patch Set: rebase 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 (c) 2014 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 CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_SWITCH_RECORDER_H_
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_SWITCH_RECORDER_H_
7
8 namespace chromeos {
9 namespace input_method {
10
11 // A class for recording UMA logs for IME switches.
12 class InputMethodSwitchRecorder {
13 public:
14 InputMethodSwitchRecorder();
15 ~InputMethodSwitchRecorder();
16
17 static InputMethodSwitchRecorder* Get();
18 void RecordSwitch(bool by_tray_menu);
19 };
20
21 } // namespace input_method
22 } // namespace chromeos
23
24 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_SWITCH_RECORDER_H_
25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698