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

Unified Diff: ui/views/ime/input_method_bridge.cc

Issue 623293004: replace OVERRIDE and FINAL with override and final in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 | « ui/views/ime/input_method_bridge.h ('k') | ui/views/ime/mock_input_method.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/ime/input_method_bridge.cc
diff --git a/ui/views/ime/input_method_bridge.cc b/ui/views/ime/input_method_bridge.cc
index 97b040056ad35cb06f379b7fecbbd698dfa0ba52..8e321f0796170efb81e74fdcb872b297021d1498 100644
--- a/ui/views/ime/input_method_bridge.cc
+++ b/ui/views/ime/input_method_bridge.cc
@@ -24,16 +24,16 @@ class InputMethodBridge::HostObserver : public ui::InputMethodObserver {
virtual ~HostObserver();
virtual void OnTextInputTypeChanged(
- const ui::TextInputClient* client) OVERRIDE {}
- virtual void OnFocus() OVERRIDE {}
- virtual void OnBlur() OVERRIDE {}
+ const ui::TextInputClient* client) override {}
+ virtual void OnFocus() override {}
+ virtual void OnBlur() override {}
virtual void OnCaretBoundsChanged(
- const ui::TextInputClient* client) OVERRIDE {}
+ const ui::TextInputClient* client) override {}
virtual void OnTextInputStateChanged(
- const ui::TextInputClient* client) OVERRIDE {}
+ const ui::TextInputClient* client) override {}
virtual void OnInputMethodDestroyed(
- const ui::InputMethod* input_method) OVERRIDE;
- virtual void OnShowImeIfNeeded() OVERRIDE {}
+ const ui::InputMethod* input_method) override;
+ virtual void OnShowImeIfNeeded() override {}
private:
InputMethodBridge* bridge_;
« no previous file with comments | « ui/views/ime/input_method_bridge.h ('k') | ui/views/ime/mock_input_method.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698