| Index: content/browser/web_contents/web_contents_view_aura.cc
|
| ===================================================================
|
| --- content/browser/web_contents/web_contents_view_aura.cc (revision 247964)
|
| +++ content/browser/web_contents/web_contents_view_aura.cc (working copy)
|
| @@ -1401,11 +1401,12 @@
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // WebContentsViewAura, RenderViewHostDelegateView implementation:
|
|
|
| -void WebContentsViewAura::ShowContextMenu(const ContextMenuParams& params) {
|
| +void WebContentsViewAura::ShowContextMenu(RenderFrameHost* render_frame_host,
|
| + const ContextMenuParams& params) {
|
| if (touch_editable_)
|
| touch_editable_->EndTouchEditing(false);
|
| if (delegate_) {
|
| - delegate_->ShowContextMenu(params);
|
| + delegate_->ShowContextMenu(render_frame_host, params);
|
| // WARNING: we may have been deleted during the call to ShowContextMenu().
|
| }
|
| }
|
|
|