Fix opening of popups from sandboxed iframes (issue #2121)

This commit is contained in:
Marshall Greenblatt 2017-03-15 18:04:16 -04:00
parent 608f2d4170
commit bab532b35b
5 changed files with 30 additions and 26 deletions

View File

@ -2243,10 +2243,13 @@ bool CefBrowserHostImpl::CanDragEnter(
void CefBrowserHostImpl::GetCustomWebContentsView( void CefBrowserHostImpl::GetCustomWebContentsView(
content::WebContents* web_contents, content::WebContents* web_contents,
const GURL& target_url, const GURL& target_url,
int opener_render_process_id,
int opener_render_frame_id,
content::WebContentsView** view, content::WebContentsView** view,
content::RenderViewHostDelegateView** delegate_view) { content::RenderViewHostDelegateView** delegate_view) {
CefBrowserInfoManager::GetInstance()->GetCustomWebContentsView( CefBrowserInfoManager::GetInstance()->GetCustomWebContentsView(
web_contents, target_url, view, delegate_view); target_url, opener_render_process_id, opener_render_frame_id, view,
delegate_view);
} }
void CefBrowserHostImpl::WebContentsCreated( void CefBrowserHostImpl::WebContentsCreated(
@ -2261,8 +2264,8 @@ void CefBrowserHostImpl::WebContentsCreated(
std::unique_ptr<CefBrowserPlatformDelegate> platform_delegate; std::unique_ptr<CefBrowserPlatformDelegate> platform_delegate;
CefBrowserInfoManager::GetInstance()->WebContentsCreated( CefBrowserInfoManager::GetInstance()->WebContentsCreated(
source_contents, target_url, new_contents, settings, client, target_url, opener_render_process_id, opener_render_frame_id, settings,
platform_delegate); client, platform_delegate);
scoped_refptr<CefBrowserInfo> info = scoped_refptr<CefBrowserInfo> info =
CefBrowserInfoManager::GetInstance()->CreatePopupBrowserInfo( CefBrowserInfoManager::GetInstance()->CreatePopupBrowserInfo(

View File

@ -405,6 +405,8 @@ class CefBrowserHostImpl : public CefBrowserHost,
void GetCustomWebContentsView( void GetCustomWebContentsView(
content::WebContents* web_contents, content::WebContents* web_contents,
const GURL& target_url, const GURL& target_url,
int opener_render_process_id,
int opener_render_frame_id,
content::WebContentsView** view, content::WebContentsView** view,
content::RenderViewHostDelegateView** delegate_view) override; content::RenderViewHostDelegateView** delegate_view) override;
void WebContentsCreated(content::WebContents* source_contents, void WebContentsCreated(content::WebContents* source_contents,

View File

@ -247,15 +247,14 @@ bool CefBrowserInfoManager::CanCreateWindow(
} }
void CefBrowserInfoManager::GetCustomWebContentsView( void CefBrowserInfoManager::GetCustomWebContentsView(
content::WebContents* web_contents,
const GURL& target_url, const GURL& target_url,
int opener_render_process_id,
int opener_render_frame_id,
content::WebContentsView** view, content::WebContentsView** view,
content::RenderViewHostDelegateView** delegate_view) { content::RenderViewHostDelegateView** delegate_view) {
content::RenderFrameHost* host =
web_contents->GetRenderViewHost()->GetMainFrame();
std::unique_ptr<CefBrowserInfoManager::PendingPopup> pending_popup = std::unique_ptr<CefBrowserInfoManager::PendingPopup> pending_popup =
PopPendingPopup(CefBrowserInfoManager::PendingPopup::CAN_CREATE_WINDOW, PopPendingPopup(CefBrowserInfoManager::PendingPopup::CAN_CREATE_WINDOW,
host->GetProcess()->GetID(), host->GetRoutingID(), opener_render_process_id, opener_render_frame_id,
target_url); target_url);
DCHECK(pending_popup.get()); DCHECK(pending_popup.get());
DCHECK(pending_popup->platform_delegate.get()); DCHECK(pending_popup->platform_delegate.get());
@ -271,22 +270,16 @@ void CefBrowserInfoManager::GetCustomWebContentsView(
} }
void CefBrowserInfoManager::WebContentsCreated( void CefBrowserInfoManager::WebContentsCreated(
content::WebContents* source_contents,
const GURL& target_url, const GURL& target_url,
content::WebContents* new_contents, int opener_render_process_id,
int opener_render_frame_id,
CefBrowserSettings& settings, CefBrowserSettings& settings,
CefRefPtr<CefClient>& client, CefRefPtr<CefClient>& client,
std::unique_ptr<CefBrowserPlatformDelegate>& platform_delegate) { std::unique_ptr<CefBrowserPlatformDelegate>& platform_delegate) {
DCHECK(source_contents);
DCHECK(new_contents);
content::RenderFrameHost* host =
source_contents->GetRenderViewHost()->GetMainFrame();
std::unique_ptr<CefBrowserInfoManager::PendingPopup> pending_popup = std::unique_ptr<CefBrowserInfoManager::PendingPopup> pending_popup =
PopPendingPopup( PopPendingPopup(
CefBrowserInfoManager::PendingPopup::GET_CUSTOM_WEB_CONTENTS_VIEW, CefBrowserInfoManager::PendingPopup::GET_CUSTOM_WEB_CONTENTS_VIEW,
host->GetProcess()->GetID(), host->GetRoutingID(), opener_render_process_id, opener_render_frame_id, target_url);
target_url);
DCHECK(pending_popup.get()); DCHECK(pending_popup.get());
DCHECK(pending_popup->platform_delegate.get()); DCHECK(pending_popup->platform_delegate.get());

View File

@ -75,17 +75,18 @@ class CefBrowserInfoManager : public content::RenderProcessHostObserver {
// Called from CefBrowserHostImpl::GetCustomWebContentsView. See comments on // Called from CefBrowserHostImpl::GetCustomWebContentsView. See comments on
// PendingPopup for more information. // PendingPopup for more information.
void GetCustomWebContentsView( void GetCustomWebContentsView(
content::WebContents* web_contents,
const GURL& target_url, const GURL& target_url,
int opener_render_process_id,
int opener_render_frame_id,
content::WebContentsView** view, content::WebContentsView** view,
content::RenderViewHostDelegateView** delegate_view); content::RenderViewHostDelegateView** delegate_view);
// Called from CefBrowserHostImpl::WebContentsCreated. See comments on // Called from CefBrowserHostImpl::WebContentsCreated. See comments on
// PendingPopup for more information. // PendingPopup for more information.
void WebContentsCreated( void WebContentsCreated(
content::WebContents* source_contents,
const GURL& target_url, const GURL& target_url,
content::WebContents* new_contents, int opener_render_process_id,
int opener_render_frame_id,
CefBrowserSettings& settings, CefBrowserSettings& settings,
CefRefPtr<CefClient>& client, CefRefPtr<CefClient>& client,
std::unique_ptr<CefBrowserPlatformDelegate>& platform_delegate); std::unique_ptr<CefBrowserPlatformDelegate>& platform_delegate);

View File

@ -1,5 +1,5 @@
diff --git content/browser/web_contents/web_contents_impl.cc content/browser/web_contents/web_contents_impl.cc diff --git content/browser/web_contents/web_contents_impl.cc content/browser/web_contents/web_contents_impl.cc
index 8800f75..edbd8eb 100644 index 8800f75..6b047eb 100644
--- content/browser/web_contents/web_contents_impl.cc --- content/browser/web_contents/web_contents_impl.cc
+++ content/browser/web_contents/web_contents_impl.cc +++ content/browser/web_contents/web_contents_impl.cc
@@ -1571,6 +1571,12 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params) { @@ -1571,6 +1571,12 @@ void WebContentsImpl::Init(const WebContents::CreateParams& params) {
@ -23,12 +23,15 @@ index 8800f75..edbd8eb 100644
if (browser_plugin_guest_ && !GuestMode::IsCrossProcessFrameGuest(this)) { if (browser_plugin_guest_ && !GuestMode::IsCrossProcessFrameGuest(this)) {
view_.reset(new WebContentsViewGuest(this, browser_plugin_guest_.get(), view_.reset(new WebContentsViewGuest(this, browser_plugin_guest_.get(),
@@ -2093,6 +2100,12 @@ void WebContentsImpl::CreateNewWindow( @@ -2093,6 +2100,15 @@ void WebContentsImpl::CreateNewWindow(
create_params.renderer_initiated_creation = create_params.renderer_initiated_creation =
main_frame_route_id != MSG_ROUTING_NONE; main_frame_route_id != MSG_ROUTING_NONE;
+ if (delegate_) { + if (delegate_) {
+ delegate_->GetCustomWebContentsView(this, params.target_url, + delegate_->GetCustomWebContentsView(this,
+ params.target_url,
+ render_process_id,
+ params.opener_render_frame_id,
+ &create_params.view, + &create_params.view,
+ &create_params.delegate_view); + &create_params.delegate_view);
+ } + }
@ -36,7 +39,7 @@ index 8800f75..edbd8eb 100644
WebContentsImpl* new_contents = NULL; WebContentsImpl* new_contents = NULL;
if (!is_guest) { if (!is_guest) {
create_params.context = view_->GetNativeView(); create_params.context = view_->GetNativeView();
@@ -2122,7 +2135,7 @@ void WebContentsImpl::CreateNewWindow( @@ -2122,7 +2138,7 @@ void WebContentsImpl::CreateNewWindow(
// TODO(brettw): It seems bogus that we have to call this function on the // TODO(brettw): It seems bogus that we have to call this function on the
// newly created object and give it one of its own member variables. // newly created object and give it one of its own member variables.
new_view->CreateViewForWidget( new_view->CreateViewForWidget(
@ -45,7 +48,7 @@ index 8800f75..edbd8eb 100644
} }
// Save the created window associated with the route so we can show it // Save the created window associated with the route so we can show it
// later. // later.
@@ -4985,7 +4998,7 @@ NavigationEntry* @@ -4985,7 +5001,7 @@ NavigationEntry*
void WebContentsImpl::CreateRenderWidgetHostViewForRenderManager( void WebContentsImpl::CreateRenderWidgetHostViewForRenderManager(
RenderViewHost* render_view_host) { RenderViewHost* render_view_host) {
RenderWidgetHostViewBase* rwh_view = RenderWidgetHostViewBase* rwh_view =
@ -97,7 +100,7 @@ index 5a509ef..981a0a5 100644
// Creates a new WebContents. // Creates a new WebContents.
diff --git content/public/browser/web_contents_delegate.h content/public/browser/web_contents_delegate.h diff --git content/public/browser/web_contents_delegate.h content/public/browser/web_contents_delegate.h
index 6f966c7..71f2f2e 100644 index 6f966c7..391b9a0 100644
--- content/public/browser/web_contents_delegate.h --- content/public/browser/web_contents_delegate.h
+++ content/public/browser/web_contents_delegate.h +++ content/public/browser/web_contents_delegate.h
@@ -42,11 +42,13 @@ class ColorChooser; @@ -42,11 +42,13 @@ class ColorChooser;
@ -114,13 +117,15 @@ index 6f966c7..71f2f2e 100644
struct ColorSuggestion; struct ColorSuggestion;
struct ContextMenuParams; struct ContextMenuParams;
struct DropData; struct DropData;
@@ -329,6 +331,12 @@ class CONTENT_EXPORT WebContentsDelegate { @@ -329,6 +331,14 @@ class CONTENT_EXPORT WebContentsDelegate {
const std::string& partition_id, const std::string& partition_id,
SessionStorageNamespace* session_storage_namespace); SessionStorageNamespace* session_storage_namespace);
+ virtual void GetCustomWebContentsView( + virtual void GetCustomWebContentsView(
+ WebContents* web_contents, + WebContents* web_contents,
+ const GURL& target_url, + const GURL& target_url,
+ int opener_render_process_id,
+ int opener_render_frame_id,
+ content::WebContentsView** view, + content::WebContentsView** view,
+ content::RenderViewHostDelegateView** delegate_view) {} + content::RenderViewHostDelegateView** delegate_view) {}
+ +