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

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

Issue 648393006: Standardize usage of virtual/override/final specifiers. (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 | « 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 92f886ea78e2fb5055f0cb833dea027232112af2..cc8f1c5e075402b8350d4b0d08090b9139e555e1 100644
--- a/ui/views/ime/input_method_bridge.cc
+++ b/ui/views/ime/input_method_bridge.cc
@@ -21,19 +21,15 @@ namespace views {
class InputMethodBridge::HostObserver : public ui::InputMethodObserver {
public:
explicit HostObserver(InputMethodBridge* bridge);
- virtual ~HostObserver();
-
- virtual void OnTextInputTypeChanged(
- 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* client) override {}
- virtual void OnInputMethodDestroyed(
- const ui::InputMethod* input_method) override;
- virtual void OnShowImeIfNeeded() override {}
+ ~HostObserver() override;
+
+ void OnTextInputTypeChanged(const ui::TextInputClient* client) override {}
+ void OnFocus() override {}
+ void OnBlur() override {}
+ void OnCaretBoundsChanged(const ui::TextInputClient* client) override {}
+ void OnTextInputStateChanged(const ui::TextInputClient* client) override {}
+ void OnInputMethodDestroyed(const ui::InputMethod* input_method) override;
+ 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