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 67b3b1f22844cb16cf2282da6a2dd40c59bca25f..889ca431cda710e245a80ecda427f48ab3148986 100644 |
--- a/content/browser/renderer_host/render_widget_host_impl.cc |
+++ b/content/browser/renderer_host/render_widget_host_impl.cc |
@@ -1310,6 +1310,18 @@ void RenderWidgetHostImpl::SetInputMethodActive(bool activate) { |
Send(new ViewMsg_SetInputMethodActive(GetRoutingID(), activate)); |
} |
+void RenderWidgetHostImpl::CandidateWindowShown() { |
+ Send(new ViewMsg_CandidateWindowShown(GetRoutingID())); |
+} |
+ |
+void RenderWidgetHostImpl::CandidateWindowUpdated() { |
+ Send(new ViewMsg_CandidateWindowUpdated(GetRoutingID())); |
+} |
+ |
+void RenderWidgetHostImpl::CandidateWindowHidden() { |
+ Send(new ViewMsg_CandidateWindowHidden(GetRoutingID())); |
+} |
+ |
void RenderWidgetHostImpl::ImeSetComposition( |
const string16& text, |
const std::vector<blink::WebCompositionUnderline>& underlines, |