Index: chrome/browser/renderer_host/render_view_host.cc |
=================================================================== |
--- chrome/browser/renderer_host/render_view_host.cc (revision 71495) |
+++ chrome/browser/renderer_host/render_view_host.cc (working copy) |
@@ -1363,6 +1363,14 @@ |
Send(new ViewMsg_MediaPlayerActionAt(routing_id(), location, action)); |
} |
+void RenderViewHost::ContextMenuClosed() { |
+ Send(new ViewMsg_ContextMenuClosed(routing_id())); |
+} |
+ |
+void RenderViewHost::PrintNodeUnderContextMenu() { |
+ Send(new ViewMsg_PrintNodeUnderContextMenu(routing_id())); |
+} |
+ |
void RenderViewHost::OnMsgPasswordFormsFound( |
const std::vector<PasswordForm>& forms) { |
delegate_->PasswordFormsFound(forms); |