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

Unified Diff: ui/keyboard/webui/vk_mojo_handler.h

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/keyboard/test/run_all_unittests.cc ('k') | ui/keyboard/webui/vk_webui_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/keyboard/webui/vk_mojo_handler.h
diff --git a/ui/keyboard/webui/vk_mojo_handler.h b/ui/keyboard/webui/vk_mojo_handler.h
index 7ee3c9d05cbbf6d986d76cfbb7cff6a0692d4b99..a7985db157185b24417f6e8935ab19dde1878bb8 100644
--- a/ui/keyboard/webui/vk_mojo_handler.h
+++ b/ui/keyboard/webui/vk_mojo_handler.h
@@ -21,27 +21,27 @@ class VKMojoHandler : public mojo::InterfaceImpl<KeyboardUIHandlerMojo>,
ui::InputMethod* GetInputMethod();
// mojo::InterfaceImpl<>:
- virtual void OnConnectionEstablished() OVERRIDE;
+ virtual void OnConnectionEstablished() override;
// KeyboardUIHandlerMojo:
virtual void SendKeyEvent(const mojo::String& event_type,
int32_t char_value,
int32_t key_code,
const mojo::String& key_name,
- int32_t modifiers) OVERRIDE;
- virtual void HideKeyboard() OVERRIDE;
+ int32_t modifiers) override;
+ virtual void HideKeyboard() override;
// ui::InputMethodObserver:
virtual void OnTextInputTypeChanged(
- 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 OnFocus() override;
+ virtual void OnBlur() override;
+ virtual void OnCaretBoundsChanged(const ui::TextInputClient* client) override;
virtual void OnTextInputStateChanged(
- const ui::TextInputClient* text_client) OVERRIDE;
+ const ui::TextInputClient* text_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;
DISALLOW_COPY_AND_ASSIGN(VKMojoHandler);
};
« no previous file with comments | « ui/keyboard/test/run_all_unittests.cc ('k') | ui/keyboard/webui/vk_webui_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698