Index: chrome/browser/renderer_host/render_view_host.cc |
=================================================================== |
--- chrome/browser/renderer_host/render_view_host.cc (revision 25695) |
+++ chrome/browser/renderer_host/render_view_host.cc (working copy) |
@@ -1588,6 +1588,13 @@ |
Send(message); |
} |
+void RenderViewHost::ForwardEditCommandsForNextKeyEvent( |
+ const EditCommands& edit_commands) { |
+ IPC::Message* message = new ViewMsg_SetEditCommandsForNextKeyEvent( |
+ routing_id(), edit_commands); |
+ Send(message); |
+} |
+ |
void RenderViewHost::ForwardMessageFromExternalHost(const std::string& message, |
const std::string& origin, |
const std::string& target) { |