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

Unified Diff: chromeos/ime/ime_keyboard_x11.cc

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/ime/fake_input_method_delegate.h ('k') | chromeos/ime/ime_keyboard_x11_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/ime/ime_keyboard_x11.cc
diff --git a/chromeos/ime/ime_keyboard_x11.cc b/chromeos/ime/ime_keyboard_x11.cc
index f2189db930a50e4ef6804d06b5428dd48d708294..22957074733ddd196f264d03fc5729c8e5052d4e 100644
--- a/chromeos/ime/ime_keyboard_x11.cc
+++ b/chromeos/ime/ime_keyboard_x11.cc
@@ -115,21 +115,21 @@ class ImeKeyboardX11 : public ImeKeyboard {
virtual ~ImeKeyboardX11() {}
// Adds/removes observer.
- virtual void AddObserver(Observer* observer) OVERRIDE;
- virtual void RemoveObserver(Observer* observer) OVERRIDE;
+ virtual void AddObserver(Observer* observer) override;
+ virtual void RemoveObserver(Observer* observer) override;
// ImeKeyboard:
virtual bool SetCurrentKeyboardLayoutByName(
- const std::string& layout_name) OVERRIDE;
- virtual bool ReapplyCurrentKeyboardLayout() OVERRIDE;
- virtual void ReapplyCurrentModifierLockStatus() OVERRIDE;
- virtual void DisableNumLock() OVERRIDE;
- virtual void SetCapsLockEnabled(bool enable_caps_lock) OVERRIDE;
- virtual bool CapsLockIsEnabled() OVERRIDE;
- virtual bool IsISOLevel5ShiftAvailable() const OVERRIDE;
- virtual bool IsAltGrAvailable() const OVERRIDE;
- virtual bool SetAutoRepeatEnabled(bool enabled) OVERRIDE;
- virtual bool SetAutoRepeatRate(const AutoRepeatRate& rate) OVERRIDE;
+ const std::string& layout_name) override;
+ virtual bool ReapplyCurrentKeyboardLayout() override;
+ virtual void ReapplyCurrentModifierLockStatus() override;
+ virtual void DisableNumLock() override;
+ virtual void SetCapsLockEnabled(bool enable_caps_lock) override;
+ virtual bool CapsLockIsEnabled() override;
+ virtual bool IsISOLevel5ShiftAvailable() const override;
+ virtual bool IsAltGrAvailable() const override;
+ virtual bool SetAutoRepeatEnabled(bool enabled) override;
+ virtual bool SetAutoRepeatRate(const AutoRepeatRate& rate) override;
private:
// Returns a mask for Num Lock (e.g. 1U << 4). Returns 0 on error.
« no previous file with comments | « chromeos/ime/fake_input_method_delegate.h ('k') | chromeos/ime/ime_keyboard_x11_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698