Revert of Split ui/base/ime into a new component (patchset #4 id:60001 of https:...
[chromium-blink-merge.git] / ui / base / ime / chromeos / fake_ime_keyboard.h
blob771aaab3a815629758299e0654c785a61a60f8db
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
3 // found in the LICENSE file.
5 #ifndef UI_BASE_IME_CHROMEOS_FAKE_IME_KEYBOARD_H_
6 #define UI_BASE_IME_CHROMEOS_FAKE_IME_KEYBOARD_H_
8 #include "ui/base/ime/chromeos/ime_keyboard.h"
10 #include <string>
12 #include "base/compiler_specific.h"
14 namespace chromeos {
15 namespace input_method {
17 class UI_BASE_EXPORT FakeImeKeyboard : public ImeKeyboard {
18 public:
19 FakeImeKeyboard();
20 ~FakeImeKeyboard() override;
22 bool SetCurrentKeyboardLayoutByName(const std::string& layout_name) override;
23 bool SetAutoRepeatRate(const AutoRepeatRate& rate) override;
24 bool SetAutoRepeatEnabled(bool enabled) override;
25 bool GetAutoRepeatEnabled() override;
26 bool ReapplyCurrentKeyboardLayout() override;
27 void ReapplyCurrentModifierLockStatus() override;
28 void DisableNumLock() override;
29 bool IsISOLevel5ShiftAvailable() const override;
30 bool IsAltGrAvailable() const override;
32 int set_current_keyboard_layout_by_name_count_;
33 AutoRepeatRate last_auto_repeat_rate_;
34 // TODO(yusukes): Add more variables for counting the numbers of the API calls
35 bool auto_repeat_is_enabled_;
37 private:
38 DISALLOW_COPY_AND_ASSIGN(FakeImeKeyboard);
41 } // namespace input_method
42 } // namespace chromeos
44 #endif // UI_BASE_IME_CHROMEOS_FAKE_IME_KEYBOARD_H_