| Index: content/browser/browser_plugin/browser_plugin_guest.cc
|
| diff --git a/content/browser/browser_plugin/browser_plugin_guest.cc b/content/browser/browser_plugin/browser_plugin_guest.cc
|
| index 716801735cdce5efdc43cda24884a5fad9e2872a..ffe077dc0fb2672cbe88290bd052f295407893ef 100644
|
| --- a/content/browser/browser_plugin/browser_plugin_guest.cc
|
| +++ b/content/browser/browser_plugin/browser_plugin_guest.cc
|
| @@ -86,6 +86,14 @@ bool BrowserPluginGuest::CanDownload(RenderViewHost* render_view_host,
|
| return false;
|
| }
|
|
|
| +bool BrowserPluginGuest::HandleContextMenu(
|
| + const ContextMenuParams& params) {
|
| + // TODO(fsamuel): We have a do nothing context menu handler for now until
|
| + // we implement the Apps Context Menu API for Browser Plugin (see
|
| + // http://crbug.com/140315).
|
| + return true;
|
| +}
|
| +
|
| void BrowserPluginGuest::RendererUnresponsive(WebContents* source) {
|
| base::ProcessHandle process_handle =
|
| web_contents()->GetRenderProcessHost()->GetHandle();
|
|
|