| 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 437d04fbc86460aa3341454a4ff3c2f3db864940..343b04745038c9016b2cd41ba36e8ed14bb270ca 100644
|
| --- a/ui/views/ime/input_method_bridge.cc
|
| +++ b/ui/views/ime/input_method_bridge.cc
|
| @@ -309,12 +309,21 @@ void InputMethodBridge::EnsureCaretInRect(const gfx::Rect& rect) {
|
| }
|
|
|
| void InputMethodBridge::OnCandidateWindowShown() {
|
| + TextInputClient* client = GetTextInputClient();
|
| + if (client)
|
| + client->OnCandidateWindowShown();
|
| }
|
|
|
| void InputMethodBridge::OnCandidateWindowUpdated() {
|
| + TextInputClient* client = GetTextInputClient();
|
| + if (client)
|
| + client->OnCandidateWindowUpdated();
|
| }
|
|
|
| void InputMethodBridge::OnCandidateWindowHidden() {
|
| + TextInputClient* client = GetTextInputClient();
|
| + if (client)
|
| + client->OnCandidateWindowHidden();
|
| }
|
|
|
| // Overridden from FocusChangeListener.
|
|
|