| 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_;
|
|
|