| 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 ea13bd481707e2f7cb6569ebf31c128ed8ab4a1d..616960ead41f1ed4242a2d3832a8bbc5689bbcbd 100644
|
| --- a/ui/views/ime/input_method_bridge.cc
|
| +++ b/ui/views/ime/input_method_bridge.cc
|
| @@ -311,6 +311,24 @@ void InputMethodBridge::EnsureCaretInRect(const gfx::Rect& rect) {
|
| client->EnsureCaretInRect(rect);
|
| }
|
|
|
| +void InputMethodBridge::OnCandidateWindowShow() {
|
| + TextInputClient* client = GetTextInputClient();
|
| + if (client)
|
| + client->OnCandidateWindowShow();
|
| +}
|
| +
|
| +void InputMethodBridge::OnCandidateWindowUpdate() {
|
| + TextInputClient* client = GetTextInputClient();
|
| + if (client)
|
| + client->OnCandidateWindowUpdate();
|
| +}
|
| +
|
| +void InputMethodBridge::OnCandidateWindowHide() {
|
| + TextInputClient* client = GetTextInputClient();
|
| + if (client)
|
| + client->OnCandidateWindowHide();
|
| +}
|
| +
|
| // Overridden from FocusChangeListener.
|
| void InputMethodBridge::OnWillChangeFocus(View* focused_before, View* focused) {
|
| if (HasCompositionText()) {
|
|
|