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 75ab862e158a37cdb82d808acf7956c043bbcec4..d76b76bd8d473ff817aa30c1e92d0970b93977a8 100644 |
--- a/content/browser/renderer_host/render_widget_host_impl.cc |
+++ b/content/browser/renderer_host/render_widget_host_impl.cc |
@@ -2118,6 +2118,10 @@ void RenderWidgetHostImpl::Replace(const string16& word) { |
Send(new ViewMsg_Replace(routing_id_, word)); |
} |
+void RenderWidgetHostImpl::ReplaceMisspelling(const string16& word) { |
+ Send(new ViewMsg_ReplaceMisspelling(routing_id_, word)); |
+} |
+ |
void RenderWidgetHostImpl::SetIgnoreInputEvents(bool ignore_input_events) { |
ignore_input_events_ = ignore_input_events; |
} |