web_contents_view_guest.cc revision c5cede9ae108bb15f6b7a8aea21c7e1fefa2834c
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"
115d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)#include "content/browser/frame_host/render_widget_host_view_guest.h"
122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "content/browser/renderer_host/render_view_host_factory.h"
132a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "content/browser/renderer_host/render_view_host_impl.h"
142a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "content/browser/web_contents/web_contents_impl.h"
15c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)#include "content/common/drag_messages.h"
165d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)#include "content/public/browser/user_metrics.h"
172a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "content/public/browser/web_contents_delegate.h"
187d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)#include "content/public/common/context_menu_params.h"
19eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch#include "content/public/common/drop_data.h"
202a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "ui/gfx/image/image_skia.h"
212a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "ui/gfx/point.h"
222a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "ui/gfx/rect.h"
232a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "ui/gfx/size.h"
242a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
25bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#if defined(USE_AURA)
26bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#include "ui/aura/window.h"
27bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#endif
28bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch
29f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)using blink::WebDragOperation;
30f2477e01787aa58f445919b809d89e252beef54fTorne (Richard Coles)using blink::WebDragOperationsMask;
312a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
322a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)namespace content {
332a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
342a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)WebContentsViewGuest::WebContentsViewGuest(
352a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    WebContentsImpl* web_contents,
362a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    BrowserPluginGuest* guest,
377dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch    scoped_ptr<WebContentsViewPort> platform_view,
387d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)    RenderViewHostDelegateView* platform_view_delegate_view)
392a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    : web_contents_(web_contents),
402a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      guest_(guest),
417dbb3d5cf0c15f500944d211057644d6a2f37371Ben Murdoch      platform_view_(platform_view.Pass()),
427d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)      platform_view_delegate_view_(platform_view_delegate_view) {
432a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
442a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
452a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)WebContentsViewGuest::~WebContentsViewGuest() {
462a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
472a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
482a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)gfx::NativeView WebContentsViewGuest::GetNativeView() const {
49c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  return platform_view_->GetNativeView();
502a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
512a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
522a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)gfx::NativeView WebContentsViewGuest::GetContentNativeView() const {
532a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  RenderWidgetHostView* rwhv = web_contents_->GetRenderWidgetHostView();
542a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  if (!rwhv)
552a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    return NULL;
562a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return rwhv->GetNativeView();
572a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
582a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
592a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)gfx::NativeWindow WebContentsViewGuest::GetTopLevelNativeWindow() const {
602a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return guest_->embedder_web_contents()->GetView()->GetTopLevelNativeWindow();
612a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
622a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
63bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdochvoid WebContentsViewGuest::OnGuestInitialized(WebContentsView* parent_view) {
64c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch#if defined(USE_AURA)
65c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch  // In aura, ScreenPositionClient doesn't work properly if we do
66bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // not have the native view associated with this WebContentsViewGuest in the
67bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // view hierarchy. We add this view as embedder's child here.
68bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // This would go in WebContentsViewGuest::CreateView, but that is too early to
69bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // access embedder_web_contents(). Therefore, we do it here.
70bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  parent_view->GetNativeView()->AddChild(platform_view_->GetNativeView());
71c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch#endif  // defined(USE_AURA)
72bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch}
73bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch
742a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::GetContainerBounds(gfx::Rect* out) const {
757d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  // We need embedder container's bounds to calculate our bounds.
767d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  guest_->embedder_web_contents()->GetView()->GetContainerBounds(out);
777d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  gfx::Point guest_coordinates = guest_->GetScreenCoordinates(gfx::Point());
787d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  out->Offset(guest_coordinates.x(), guest_coordinates.y());
797d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  out->set_size(size_);
802a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
812a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
822a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::SizeContents(const gfx::Size& size) {
83c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  size_ = size;
84c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  RenderWidgetHostView* rwhv = web_contents_->GetRenderWidgetHostView();
85c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  if (rwhv)
86c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    rwhv->SetSize(size);
872a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
882a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
892a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::SetInitialFocus() {
902a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->SetInitialFocus();
912a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
922a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
932a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)gfx::Rect WebContentsViewGuest::GetViewBounds() const {
94c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  return gfx::Rect(size_);
952a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
962a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
972a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#if defined(OS_MACOSX)
982a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::SetAllowOverlappingViews(bool overlapping) {
992a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->SetAllowOverlappingViews(overlapping);
1002a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1017d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)
1027d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)bool WebContentsViewGuest::GetAllowOverlappingViews() const {
1037d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)  return platform_view_->GetAllowOverlappingViews();
1047d4cd473f85ac64c3747c96c277f9e506a0d2246Torne (Richard Coles)}
105a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)
106a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)void WebContentsViewGuest::SetOverlayView(
107a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)    WebContentsView* overlay, const gfx::Point& offset) {
108a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)  platform_view_->SetOverlayView(overlay, offset);
109a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)}
110a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)
111a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)void WebContentsViewGuest::RemoveOverlayView() {
112a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)  platform_view_->RemoveOverlayView();
113a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)}
1142a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#endif
1152a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1162a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::CreateView(const gfx::Size& initial_size,
1172a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)                                      gfx::NativeView context) {
1182a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->CreateView(initial_size, context);
119c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  size_ = initial_size;
1202a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1212a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1222a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)RenderWidgetHostView* WebContentsViewGuest::CreateViewForWidget(
1232a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    RenderWidgetHost* render_widget_host) {
1242a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  if (render_widget_host->GetView()) {
1252a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    // During testing, the view will already be set up in most cases to the
1262a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    // test view, so we don't want to clobber it with a real one. To verify that
1272a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    // this actually is happening (and somebody isn't accidentally creating the
1282a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    // view twice), we check for the RVH Factory, which will be set when we're
1292a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    // making special ones (which go along with the special views).
1302a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    DCHECK(RenderViewHostFactory::has_factory());
1312a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    return render_widget_host->GetView();
1322a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  }
1332a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1342a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  RenderWidgetHostView* platform_widget = NULL;
1352a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_widget = platform_view_->CreateViewForWidget(render_widget_host);
1362a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1372a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  RenderWidgetHostView* view = new RenderWidgetHostViewGuest(
1382a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      render_widget_host,
1392a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      guest_,
1402a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)      platform_widget);
1412a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1422a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return view;
1432a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1442a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1452a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)RenderWidgetHostView* WebContentsViewGuest::CreateViewForPopupWidget(
1462a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    RenderWidgetHost* render_widget_host) {
1472a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return RenderWidgetHostViewPort::CreateViewForWidget(render_widget_host);
1482a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1492a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
150a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7Torne (Richard Coles)void WebContentsViewGuest::SetPageTitle(const base::string16& title) {
1512a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1522a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1532a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::RenderViewCreated(RenderViewHost* host) {
1542a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->RenderViewCreated(host);
1552a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1562a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1572a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::RenderViewSwappedIn(RenderViewHost* host) {
1582a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->RenderViewSwappedIn(host);
1592a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1602a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1612a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::SetOverscrollControllerEnabled(bool enabled) {
1622a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  // This should never override the setting of the embedder view.
1632a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1642a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1652a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#if defined(OS_MACOSX)
1662a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)bool WebContentsViewGuest::IsEventTracking() const {
1672a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return false;
1682a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1692a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1702a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::CloseTabAfterEventTracking() {
1712a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1722a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#endif
1732a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1742a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)WebContents* WebContentsViewGuest::web_contents() {
1752a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return web_contents_;
1762a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1772a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1782a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::RestoreFocus() {
1792a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->RestoreFocus();
1802a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1812a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1822a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::OnTabCrashed(base::TerminationStatus status,
1832a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)                                        int error_code) {
1842a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1852a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1862a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::Focus() {
1872a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->Focus();
1882a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1892a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1902a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::StoreFocus() {
1912a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  platform_view_->StoreFocus();
1922a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1932a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
194eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen MurdochDropData* WebContentsViewGuest::GetDropData() const {
1952a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  NOTIMPLEMENTED();
1962a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  return NULL;
1972a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
1982a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
1992a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::UpdateDragCursor(WebDragOperation operation) {
200c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  RenderViewHostImpl* embedder_render_view_host =
201c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)      static_cast<RenderViewHostImpl*>(
202c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)          guest_->embedder_web_contents()->GetRenderViewHost());
203c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  CHECK(embedder_render_view_host);
204c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  RenderViewHostDelegateView* view =
205c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)      embedder_render_view_host->GetDelegate()->GetDelegateView();
206c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  if (view)
207c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    view->UpdateDragCursor(operation);
2082a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
2092a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::GotFocus() {
2112a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
2122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2132a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::TakeFocus(bool reverse) {
2142a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
2152a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2165d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)void WebContentsViewGuest::ShowContextMenu(RenderFrameHost* render_frame_host,
2175d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)                                           const ContextMenuParams& params) {
218c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch#if defined(USE_AURA)
219c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch  // Context menu uses ScreenPositionClient::ConvertPointToScreen() in aura
220c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch  // to calculate popup position. Guest's native view
221bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // (platform_view_->GetNativeView()) is part of the embedder's view hierarchy,
222bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // but is placed at (0, 0) w.r.t. the embedder's position. Therefore, |offset|
223bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  // is added to |params|.
224bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  gfx::Rect embedder_bounds;
225bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  guest_->embedder_web_contents()->GetView()->GetContainerBounds(
226bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch      &embedder_bounds);
227bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  gfx::Rect guest_bounds;
228bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  GetContainerBounds(&guest_bounds);
229bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch
230bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  gfx::Vector2d offset = guest_bounds.origin() - embedder_bounds.origin();
231bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  ContextMenuParams params_in_embedder = params;
232bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  params_in_embedder.x += offset.x();
233bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch  params_in_embedder.y += offset.y();
2345d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  platform_view_delegate_view_->ShowContextMenu(
2355d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)      render_frame_host, params_in_embedder);
236bbcdd45c55eb7c4641ab97aef9889b0fc828e7d3Ben Murdoch#else
2375d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  platform_view_delegate_view_->ShowContextMenu(render_frame_host, params);
238c5cede9ae108bb15f6b7a8aea21c7e1fefa2834cBen Murdoch#endif  // defined(USE_AURA)
2392a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
2402a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2412a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)void WebContentsViewGuest::StartDragging(
242eb525c5499e34cc9c4b825d6d9e75bb07cc06aceBen Murdoch    const DropData& drop_data,
2432a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    WebDragOperationsMask ops,
2442a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    const gfx::ImageSkia& image,
2452a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    const gfx::Vector2d& image_offset,
2462a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)    const DragEventSourceInfo& event_info) {
247c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  WebContentsImpl* embedder_web_contents = guest_->embedder_web_contents();
248c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  embedder_web_contents->GetBrowserPluginEmbedder()->StartDrag(guest_);
249c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  RenderViewHostImpl* embedder_render_view_host =
250c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)      static_cast<RenderViewHostImpl*>(
251c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)          embedder_web_contents->GetRenderViewHost());
252c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  CHECK(embedder_render_view_host);
253c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)  RenderViewHostDelegateView* view =
254c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)      embedder_render_view_host->GetDelegate()->GetDelegateView();
2555d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  if (view) {
2565d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)    RecordAction(base::UserMetricsAction("BrowserPlugin.Guest.StartDrag"));
257c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    view->StartDragging(drop_data, ops, image, image_offset, event_info);
2585d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  } else {
259c2e0dbddbe15c98d52c4786dac06cb8952a8ae6dTorne (Richard Coles)    embedder_web_contents->SystemDragEnded();
2605d1f7b1de12d16ceb2c938c56701a3e8bfa558f7Torne (Richard Coles)  }
2612a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}
2622a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
2632a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)}  // namespace content
264