Update mojo surfaces bindings and mojo/cc/ glue
[chromium-blink-merge.git] / chrome / browser / guest_view / app_view / chrome_app_view_guest_delegate.cc
blobc93001331dbc58c06b419d10e94d2c75dca533c6
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/guest_view/app_view/chrome_app_view_guest_delegate.h"
6 #include "chrome/browser/renderer_context_menu/render_view_context_menu.h"
7 #include "components/renderer_context_menu/context_menu_delegate.h"
9 namespace extensions {
11 ChromeAppViewGuestDelegate::ChromeAppViewGuestDelegate() {
14 ChromeAppViewGuestDelegate::~ChromeAppViewGuestDelegate() {
17 bool ChromeAppViewGuestDelegate::HandleContextMenu(
18 content::WebContents* web_contents,
19 const content::ContextMenuParams& params) {
20 ContextMenuDelegate* menu_delegate =
21 ContextMenuDelegate::FromWebContents(web_contents);
22 DCHECK(menu_delegate);
24 scoped_ptr<RenderViewContextMenu> menu =
25 menu_delegate->BuildMenu(web_contents, params);
26 menu_delegate->ShowMenu(menu.Pass());
27 return true;
30 } // namespace extensions