Index: content/browser/renderer_host/render_view_host.cc |
=================================================================== |
--- content/browser/renderer_host/render_view_host.cc (revision 117246) |
+++ content/browser/renderer_host/render_view_host.cc (working copy) |
@@ -63,6 +63,7 @@ |
using WebKit::WebDragOperationsMask; |
using WebKit::WebInputEvent; |
using WebKit::WebMediaPlayerAction; |
+using WebKit::WebPluginAction; |
namespace { |
@@ -1384,6 +1385,11 @@ |
Send(new ViewMsg_MediaPlayerActionAt(routing_id(), location, action)); |
} |
+void RenderViewHost::ExecutePluginActionAtLocation( |
+ const gfx::Point& location, const WebKit::WebPluginAction& action) { |
+ Send(new ViewMsg_PluginActionAt(routing_id(), location, action)); |
+} |
+ |
void RenderViewHost::DisassociateFromPopupCount() { |
Send(new ViewMsg_DisassociateFromPopupCount(routing_id())); |
} |