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

Side by Side Diff: ui/base/ime/chromeos/ime_keyboard_ozone.h

Issue 727143002: Moves code from chromeos/ime to ui/base/ime/chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit. Created 6 years 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
« no previous file with comments | « ui/base/ime/chromeos/ime_keyboard.cc ('k') | ui/base/ime/chromeos/ime_keyboard_ozone.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROMEOS_IME_IME_KEYBOARD_OZONE_H_ 5 #ifndef UI_BASE_IME_CHROMEOS_IME_KEYBOARD_OZONE_H_
6 #define CHROMEOS_IME_IME_KEYBOARD_OZONE_H_ 6 #define UI_BASE_IME_CHROMEOS_IME_KEYBOARD_OZONE_H_
7 7
8 #include "chromeos/ime/ime_keyboard.h" 8 #include "ui/base/ime/chromeos/ime_keyboard.h"
9 9
10 #include <string> 10 #include <string>
11 11
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "chromeos/chromeos_export.h" 13 #include "ui/base/ui_base_export.h"
14 14
15 namespace chromeos { 15 namespace chromeos {
16 namespace input_method { 16 namespace input_method {
17 17
18 class CHROMEOS_EXPORT ImeKeyboardOzone : public ImeKeyboard { 18 class UI_BASE_EXPORT ImeKeyboardOzone : public ImeKeyboard {
19 public: 19 public:
20 ImeKeyboardOzone(); 20 ImeKeyboardOzone();
21 virtual ~ImeKeyboardOzone(); 21 virtual ~ImeKeyboardOzone();
22 22
23 virtual bool SetCurrentKeyboardLayoutByName(const std::string& layout_name) 23 virtual bool SetCurrentKeyboardLayoutByName(const std::string& layout_name)
24 override; 24 override;
25 virtual bool SetAutoRepeatRate(const AutoRepeatRate& rate) override; 25 virtual bool SetAutoRepeatRate(const AutoRepeatRate& rate) override;
26 virtual bool SetAutoRepeatEnabled(bool enabled) override; 26 virtual bool SetAutoRepeatEnabled(bool enabled) override;
27 virtual bool ReapplyCurrentKeyboardLayout() override; 27 virtual bool ReapplyCurrentKeyboardLayout() override;
28 virtual void ReapplyCurrentModifierLockStatus() override; 28 virtual void ReapplyCurrentModifierLockStatus() override;
29 virtual void DisableNumLock() override; 29 virtual void DisableNumLock() override;
30 virtual void SetCapsLockEnabled(bool enable_caps_lock) override; 30 virtual void SetCapsLockEnabled(bool enable_caps_lock) override;
31 virtual bool CapsLockIsEnabled() override; 31 virtual bool CapsLockIsEnabled() override;
32 32
33 private: 33 private:
34 DISALLOW_COPY_AND_ASSIGN(ImeKeyboardOzone); 34 DISALLOW_COPY_AND_ASSIGN(ImeKeyboardOzone);
35 }; 35 };
36 36
37 } // namespace input_method 37 } // namespace input_method
38 } // namespace chromeos 38 } // namespace chromeos
39 39
40 #endif // CHROMEOS_IME_IME_KEYBOARD_OZONE_H_ 40 #endif // UI_BASE_IME_CHROMEOS_IME_KEYBOARD_OZONE_H_
OLDNEW
« no previous file with comments | « ui/base/ime/chromeos/ime_keyboard.cc ('k') | ui/base/ime/chromeos/ime_keyboard_ozone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698