| Index: content/browser/renderer_host/render_widget_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
|
| index 9e606f4d5ca2f56a1508a717aa31c1493a75988e..cb7e9fa6a4a8e3419b17f741122abe5059586ccd 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
| @@ -1306,6 +1306,18 @@ void RenderWidgetHostImpl::SetInputMethodActive(bool activate) {
|
| Send(new ViewMsg_SetInputMethodActive(GetRoutingID(), activate));
|
| }
|
|
|
| +void RenderWidgetHostImpl::CandidateWindowShow() {
|
| + Send(new ViewMsg_CandidateWindowShow(GetRoutingID()));
|
| +}
|
| +
|
| +void RenderWidgetHostImpl::CandidateWindowUpdate() {
|
| + Send(new ViewMsg_CandidateWindowUpdate(GetRoutingID()));
|
| +}
|
| +
|
| +void RenderWidgetHostImpl::CandidateWindowHide() {
|
| + Send(new ViewMsg_CandidateWindowHide(GetRoutingID()));
|
| +}
|
| +
|
| void RenderWidgetHostImpl::ImeSetComposition(
|
| const string16& text,
|
| const std::vector<blink::WebCompositionUnderline>& underlines,
|
|
|