| 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 fcc59161a302e73789566727c01611c27928d031..b3c4f00df1f8ad7b35972752a4d34adea737eaa9 100644
|
| --- a/ui/views/ime/input_method_bridge.cc
|
| +++ b/ui/views/ime/input_method_bridge.cc
|
| @@ -33,6 +33,7 @@ class InputMethodBridge::HostObserver : public ui::InputMethodObserver {
|
| const ui::TextInputClient* client) OVERRIDE {}
|
| virtual void OnInputMethodDestroyed(
|
| const ui::InputMethod* input_method) OVERRIDE;
|
| + virtual void OnShowImeIfNeeded() OVERRIDE {}
|
|
|
| private:
|
| InputMethodBridge* bridge_;
|
| @@ -171,6 +172,11 @@ bool InputMethodBridge::IsCandidatePopupOpen() const {
|
| return host_->IsCandidatePopupOpen();
|
| }
|
|
|
| +void InputMethodBridge::ShowImeIfNeeded() const {
|
| + DCHECK(host_);
|
| + host_->ShowImeIfNeeded();
|
| +}
|
| +
|
| // Overridden from TextInputClient. Forward an event from the system-wide IME
|
| // to the text input |client|, which is e.g. views::NativeTextfieldViews.
|
| void InputMethodBridge::SetCompositionText(
|
|
|