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

Side by Side Diff: chromeos/ime/fake_ime_keyboard.h

Issue 628883002: replace OVERRIDE and FINAL with override and final in chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « chromeos/disks/disk_mount_manager.cc ('k') | chromeos/ime/fake_input_method_delegate.h » ('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_FAKE_IME_KEYBOARD_H_ 5 #ifndef CHROMEOS_IME_FAKE_IME_KEYBOARD_H_
6 #define CHROMEOS_IME_FAKE_IME_KEYBOARD_H_ 6 #define CHROMEOS_IME_FAKE_IME_KEYBOARD_H_
7 7
8 #include "chromeos/ime/ime_keyboard.h" 8 #include "chromeos/ime/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 "base/observer_list.h" 13 #include "base/observer_list.h"
14 #include "chromeos/chromeos_export.h" 14 #include "chromeos/chromeos_export.h"
15 15
16 namespace chromeos { 16 namespace chromeos {
17 namespace input_method { 17 namespace input_method {
18 18
19 class CHROMEOS_EXPORT FakeImeKeyboard : public ImeKeyboard { 19 class CHROMEOS_EXPORT FakeImeKeyboard : public ImeKeyboard {
20 public: 20 public:
21 FakeImeKeyboard(); 21 FakeImeKeyboard();
22 virtual ~FakeImeKeyboard(); 22 virtual ~FakeImeKeyboard();
23 23
24 virtual void AddObserver(Observer* observer) OVERRIDE; 24 virtual void AddObserver(Observer* observer) override;
25 virtual void RemoveObserver(Observer* observer) OVERRIDE; 25 virtual void RemoveObserver(Observer* observer) override;
26 virtual bool SetCurrentKeyboardLayoutByName(const std::string& layout_name) 26 virtual bool SetCurrentKeyboardLayoutByName(const std::string& layout_name)
27 OVERRIDE; 27 override;
28 virtual bool ReapplyCurrentKeyboardLayout() OVERRIDE; 28 virtual bool ReapplyCurrentKeyboardLayout() override;
29 virtual void ReapplyCurrentModifierLockStatus() OVERRIDE; 29 virtual void ReapplyCurrentModifierLockStatus() override;
30 virtual void DisableNumLock() OVERRIDE; 30 virtual void DisableNumLock() override;
31 virtual void SetCapsLockEnabled(bool enable_caps_lock) OVERRIDE; 31 virtual void SetCapsLockEnabled(bool enable_caps_lock) override;
32 virtual bool CapsLockIsEnabled() OVERRIDE; 32 virtual bool CapsLockIsEnabled() override;
33 virtual bool IsISOLevel5ShiftAvailable() const OVERRIDE; 33 virtual bool IsISOLevel5ShiftAvailable() const override;
34 virtual bool IsAltGrAvailable() const OVERRIDE; 34 virtual bool IsAltGrAvailable() const override;
35 virtual bool SetAutoRepeatEnabled(bool enabled) OVERRIDE; 35 virtual bool SetAutoRepeatEnabled(bool enabled) override;
36 virtual bool SetAutoRepeatRate(const AutoRepeatRate& rate) OVERRIDE; 36 virtual bool SetAutoRepeatRate(const AutoRepeatRate& rate) override;
37 37
38 int set_current_keyboard_layout_by_name_count_; 38 int set_current_keyboard_layout_by_name_count_;
39 std::string last_layout_; 39 std::string last_layout_;
40 bool caps_lock_is_enabled_; 40 bool caps_lock_is_enabled_;
41 bool auto_repeat_is_enabled_; 41 bool auto_repeat_is_enabled_;
42 AutoRepeatRate last_auto_repeat_rate_; 42 AutoRepeatRate last_auto_repeat_rate_;
43 // TODO(yusukes): Add more variables for counting the numbers of the API calls 43 // TODO(yusukes): Add more variables for counting the numbers of the API calls
44 44
45 private: 45 private:
46 ObserverList<Observer> observers_; 46 ObserverList<Observer> observers_;
47 47
48 DISALLOW_COPY_AND_ASSIGN(FakeImeKeyboard); 48 DISALLOW_COPY_AND_ASSIGN(FakeImeKeyboard);
49 }; 49 };
50 50
51 } // namespace input_method 51 } // namespace input_method
52 } // namespace chromeos 52 } // namespace chromeos
53 53
54 #endif // CHROMEOS_IME_FAKE_IME_KEYBOARD_H_ 54 #endif // CHROMEOS_IME_FAKE_IME_KEYBOARD_H_
OLDNEW
« no previous file with comments | « chromeos/disks/disk_mount_manager.cc ('k') | chromeos/ime/fake_input_method_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698