web_contents_view_guest.cc revision 1e9bf3e0803691d0a228da41fc608347b6db4340
12a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Copyright (c) 2012 The Chromium Authors. All rights reserved.
22a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// Use of this source code is governed by a BSD-style license that can be
32a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)// found in the LICENSE file.
42a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
52a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "content/browser/web_contents/web_contents_view_guest.h"
62a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
72a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "build/build_config.h"
8c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)#include "content/browser/browser_plugin/browser_plugin_embedder.h"
92a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "content/browser/browser_plugin/browser_plugin_guest.h"
101e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)#include "content/browser/frame_host/interstitial_page_impl.h"
112a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "content/browser/renderer_host/render_view_host_factory.h"
122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "content/browser/renderer_host/render_view_host_impl.h"
132a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "content/browser/renderer_host/render_widget_host_view_guest.h"
142a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "content/browser/web_contents/web_contents_impl.h"
15c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)#include "content/common/drag_messages.h"
162a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "content/public/browser/web_contents_delegate.h"
177d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)#include "content/public/common/context_menu_params.h"
18eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch#include "content/public/common/drop_data.h"
192a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "ui/gfx/image/image_skia.h"
202a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "ui/gfx/point.h"
212a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "ui/gfx/rect.h"
222a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "ui/gfx/size.h"
232a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
24bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#if defined(USE_AURA)
25bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#include "ui/aura/window.h"
26bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#endif
27bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch
282a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)using WebKit::WebDragOperation;
292a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)using WebKit::WebDragOperationsMask;
302a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
312a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)namespace content {
322a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
332a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)WebContentsViewGuest::WebContentsViewGuest(
342a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    WebContentsImpl* web_contents,
352a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    BrowserPluginGuest* guest,
367dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch    scoped_ptr<WebContentsViewPort> platform_view,
377d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)    RenderViewHostDelegateView* platform_view_delegate_view)
382a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    : web_contents_(web_contents),
392a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      guest_(guest),
407dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch      platform_view_(platform_view.Pass()),
417d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)      platform_view_delegate_view_(platform_view_delegate_view) {
422a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
432a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
442a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)WebContentsViewGuest::~WebContentsViewGuest() {
452a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
462a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
472a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)gfx::NativeView WebContentsViewGuest::GetNativeView() const {
48c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  return platform_view_->GetNativeView();
492a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
502a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
512a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)gfx::NativeView WebContentsViewGuest::GetContentNativeView() const {
522a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  RenderWidgetHostView* rwhv = web_contents_->GetRenderWidgetHostView();
532a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  if (!rwhv)
542a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    return NULL;
552a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return rwhv->GetNativeView();
562a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
572a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
582a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)gfx::NativeWindow WebContentsViewGuest::GetTopLevelNativeWindow() const {
592a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return guest_->embedder_web_contents()->GetView()->GetTopLevelNativeWindow();
602a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
612a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
62bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdochvoid WebContentsViewGuest::OnGuestInitialized(WebContentsView* parent_view) {
63bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#if defined(USE_AURA) || defined(OS_WIN)
64bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // In aura and windows, ScreenPositionClient doesn't work properly if we do
65bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // not have the native view associated with this WebContentsViewGuest in the
66bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // view hierarchy. We add this view as embedder's child here.
67bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // This would go in WebContentsViewGuest::CreateView, but that is too early to
68bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // access embedder_web_contents(). Therefore, we do it here.
69bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#if defined(USE_AURA)
70bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // This can be win aura or chromeos.
71bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  parent_view->GetNativeView()->AddChild(platform_view_->GetNativeView());
72bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#elif defined(OS_WIN)
73bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  SetParent(platform_view_->GetNativeView(), parent_view->GetNativeView());
74bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#endif
75bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#endif  // defined(USE_AURA) || defined(OS_WIN)
76bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch}
77bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch
782a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::GetContainerBounds(gfx::Rect* out) const {
797d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  // We need embedder container's bounds to calculate our bounds.
807d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  guest_->embedder_web_contents()->GetView()->GetContainerBounds(out);
817d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  gfx::Point guest_coordinates = guest_->GetScreenCoordinates(gfx::Point());
827d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  out->Offset(guest_coordinates.x(), guest_coordinates.y());
837d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  out->set_size(size_);
842a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
852a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
862a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::SizeContents(const gfx::Size& size) {
87c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  size_ = size;
88c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  RenderWidgetHostView* rwhv = web_contents_->GetRenderWidgetHostView();
89c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  if (rwhv)
90c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    rwhv->SetSize(size);
912a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
922a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
932a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::SetInitialFocus() {
942a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->SetInitialFocus();
952a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
962a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
972a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)gfx::Rect WebContentsViewGuest::GetViewBounds() const {
98c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  return gfx::Rect(size_);
992a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1002a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1012a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#if defined(OS_MACOSX)
1022a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::SetAllowOverlappingViews(bool overlapping) {
1032a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->SetAllowOverlappingViews(overlapping);
1042a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1057d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)
1067d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)bool WebContentsViewGuest::GetAllowOverlappingViews() const {
1077d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  return platform_view_->GetAllowOverlappingViews();
1087d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)}
1092a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#endif
1102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1112a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::CreateView(const gfx::Size& initial_size,
1122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)                                      gfx::NativeView context) {
1132a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->CreateView(initial_size, context);
114c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  size_ = initial_size;
1152a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1162a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1172a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)RenderWidgetHostView* WebContentsViewGuest::CreateViewForWidget(
1182a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    RenderWidgetHost* render_widget_host) {
1192a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  if (render_widget_host->GetView()) {
1202a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    // During testing, the view will already be set up in most cases to the
1212a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    // test view, so we don't want to clobber it with a real one. To verify that
1222a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    // this actually is happening (and somebody isn't accidentally creating the
1232a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    // view twice), we check for the RVH Factory, which will be set when we're
1242a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    // making special ones (which go along with the special views).
1252a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    DCHECK(RenderViewHostFactory::has_factory());
1262a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    return render_widget_host->GetView();
1272a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  }
1282a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1292a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  RenderWidgetHostView* platform_widget = NULL;
1302a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_widget = platform_view_->CreateViewForWidget(render_widget_host);
1312a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1322a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  RenderWidgetHostView* view = new RenderWidgetHostViewGuest(
1332a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      render_widget_host,
1342a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      guest_,
1352a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      platform_widget);
1362a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1372a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return view;
1382a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1392a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1402a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)RenderWidgetHostView* WebContentsViewGuest::CreateViewForPopupWidget(
1412a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    RenderWidgetHost* render_widget_host) {
1422a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return RenderWidgetHostViewPort::CreateViewForWidget(render_widget_host);
1432a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1442a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1452a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::SetPageTitle(const string16& title) {
1462a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1472a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1482a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::RenderViewCreated(RenderViewHost* host) {
1492a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->RenderViewCreated(host);
1502a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1512a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1522a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::RenderViewSwappedIn(RenderViewHost* host) {
1532a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->RenderViewSwappedIn(host);
1542a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1552a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1562a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::SetOverscrollControllerEnabled(bool enabled) {
1572a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // This should never override the setting of the embedder view.
1582a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1592a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1602a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#if defined(OS_MACOSX)
1612a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)bool WebContentsViewGuest::IsEventTracking() const {
1622a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return false;
1632a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1642a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1652a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::CloseTabAfterEventTracking() {
1662a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1672a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#endif
1682a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1692a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)WebContents* WebContentsViewGuest::web_contents() {
1702a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return web_contents_;
1712a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1722a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1732a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::RestoreFocus() {
1742a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->RestoreFocus();
1752a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1762a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1772a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::OnTabCrashed(base::TerminationStatus status,
1782a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)                                        int error_code) {
1792a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1802a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1812a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::Focus() {
1822a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->Focus();
1832a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1842a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1852a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::StoreFocus() {
1862a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->StoreFocus();
1872a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1882a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
189eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen MurdochDropData* WebContentsViewGuest::GetDropData() const {
1902a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  NOTIMPLEMENTED();
1912a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return NULL;
1922a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1932a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1942a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::UpdateDragCursor(WebDragOperation operation) {
195c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  RenderViewHostImpl* embedder_render_view_host =
196c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)      static_cast<RenderViewHostImpl*>(
197c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)          guest_->embedder_web_contents()->GetRenderViewHost());
198c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  CHECK(embedder_render_view_host);
199c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  RenderViewHostDelegateView* view =
200c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)      embedder_render_view_host->GetDelegate()->GetDelegateView();
201c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  if (view)
202c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    view->UpdateDragCursor(operation);
2032a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
2042a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2052a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::GotFocus() {
2062a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
2072a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2082a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::TakeFocus(bool reverse) {
2092a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
2102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2117d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)void WebContentsViewGuest::ShowContextMenu(const ContextMenuParams& params) {
212bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#if defined(USE_AURA) || defined(OS_WIN)
213bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // Context menu uses ScreenPositionClient::ConvertPointToScreen() in aura and
214bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // windows to calculate popup position. Guest's native view
215bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // (platform_view_->GetNativeView()) is part of the embedder's view hierarchy,
216bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // but is placed at (0, 0) w.r.t. the embedder's position. Therefore, |offset|
217bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // is added to |params|.
218bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  gfx::Rect embedder_bounds;
219bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  guest_->embedder_web_contents()->GetView()->GetContainerBounds(
220bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch      &embedder_bounds);
221bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  gfx::Rect guest_bounds;
222bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  GetContainerBounds(&guest_bounds);
223bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch
224bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  gfx::Vector2d offset = guest_bounds.origin() - embedder_bounds.origin();
225bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  ContextMenuParams params_in_embedder = params;
226bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  params_in_embedder.x += offset.x();
227bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  params_in_embedder.y += offset.y();
228bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  platform_view_delegate_view_->ShowContextMenu(params_in_embedder);
229bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#else
2307d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  platform_view_delegate_view_->ShowContextMenu(params);
231bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#endif  // defined(USE_AURA) || defined(OS_WIN)
2322a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
2332a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2342a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::ShowPopupMenu(const gfx::Rect& bounds,
2352a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)                                         int item_height,
2362a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)                                         double item_font_size,
2372a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)                                         int selected_item,
2387dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch                                         const std::vector<MenuItem>& items,
2392a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)                                         bool right_aligned,
2402a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)                                         bool allow_multiple_selection) {
2412a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // External popup menus are only used on Mac and Android.
2422a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  NOTIMPLEMENTED();
2432a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
2442a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2452a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::StartDragging(
246eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch    const DropData& drop_data,
2472a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    WebDragOperationsMask ops,
2482a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    const gfx::ImageSkia& image,
2492a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    const gfx::Vector2d& image_offset,
2502a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    const DragEventSourceInfo& event_info) {
251c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  WebContentsImpl* embedder_web_contents = guest_->embedder_web_contents();
252c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  embedder_web_contents->GetBrowserPluginEmbedder()->StartDrag(guest_);
253c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  RenderViewHostImpl* embedder_render_view_host =
254c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)      static_cast<RenderViewHostImpl*>(
255c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)          embedder_web_contents->GetRenderViewHost());
256c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  CHECK(embedder_render_view_host);
257c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  RenderViewHostDelegateView* view =
258c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)      embedder_render_view_host->GetDelegate()->GetDelegateView();
259c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  if (view)
260c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    view->StartDragging(drop_data, ops, image, image_offset, event_info);
261c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  else
262c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    embedder_web_contents->SystemDragEnded();
2632a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
2642a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2652a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}  // namespace content
266