summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2016-03-01 11:15:51 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-01 19:17:50 +0000
commit9e24bd35f58fff1562b0784be8ab2e612ece6408 (patch)
tree981bb6a7b8e8a68ce34ce9232b461ad4fa8f8a6b /extensions
parent372f7658f370076484322aed8e15756cea64ee53 (diff)
downloadchromium_src-9e24bd35f58fff1562b0784be8ab2e612ece6408.zip
chromium_src-9e24bd35f58fff1562b0784be8ab2e612ece6408.tar.gz
chromium_src-9e24bd35f58fff1562b0784be8ab2e612ece6408.tar.bz2
Plumb the correct owner document through DocumentInit::m_owner.
The current code tries to determine the security origin to inherit (if any) too late in document initialization. This results in strange and hard to understand behavior. For example, opener is not set until /after/ the document's security context is already initialized. To make this work, initSecurityContext() has a heuristic: if it should have inherited a security origin (e.g. the URL is about:blank) but there's nothing to inherit from, it initializes the security origin as unique, but then marks initialization as failed. When the opener is /actually/ set, it then calls initSecurityContext() again. Since the security context hasn't been marked as initialized yet, the reinitialization is allowed to proceed, and now the frame inherits its opener's security origin. Rather than going through this elaborate dance, this CL gets rid of it and proactively plumbs through the correct owner document to use. With these changes: - A security context can never be reinitialized. This requires passing the opener around when creating new windows, so that DocumentLoader can initialize the owner document correctly. - javascript: URLs have different inheritance rules: the loading machinery can now just directly pass in the correct owner document. - The exception for reusing a Window object when navigating from the initial empty Document has been removed: now it strictly follows the spec and reuses it iff it is same-origin to the new Document. BUG=583445 CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_site_isolation Review URL: https://codereview.chromium.org/1685003002 Cr-Commit-Position: refs/heads/master@{#378508}
Diffstat (limited to 'extensions')
-rw-r--r--extensions/browser/api/app_window/app_window_api.cc3
-rw-r--r--extensions/browser/app_window/app_window.cc3
-rw-r--r--extensions/browser/app_window/app_window.h3
-rw-r--r--extensions/browser/app_window/app_window_contents.cc9
-rw-r--r--extensions/browser/app_window/app_window_contents.h4
-rw-r--r--extensions/browser/app_window/test_app_window_contents.cc4
-rw-r--r--extensions/browser/app_window/test_app_window_contents.h4
-rw-r--r--extensions/renderer/app_window_custom_bindings.cc14
8 files changed, 22 insertions, 22 deletions
diff --git a/extensions/browser/api/app_window/app_window_api.cc b/extensions/browser/api/app_window/app_window_api.cc
index 3e9f45f..4f5ffa5 100644
--- a/extensions/browser/api/app_window/app_window_api.cc
+++ b/extensions/browser/api/app_window/app_window_api.cc
@@ -340,7 +340,8 @@ bool AppWindowCreateFunction::RunAsync() {
AppWindow* app_window =
AppWindowClient::Get()->CreateAppWindow(browser_context(), extension());
- app_window->Init(url, new AppWindowContentsImpl(app_window), create_params);
+ app_window->Init(url, new AppWindowContentsImpl(app_window),
+ render_frame_host(), create_params);
if (ExtensionsBrowserClient::Get()->IsRunningInForcedAppMode() &&
!app_window->is_ime_window()) {
diff --git a/extensions/browser/app_window/app_window.cc b/extensions/browser/app_window/app_window.cc
index 0c0a45b..7294d6f 100644
--- a/extensions/browser/app_window/app_window.cc
+++ b/extensions/browser/app_window/app_window.cc
@@ -261,10 +261,11 @@ AppWindow::AppWindow(BrowserContext* context,
void AppWindow::Init(const GURL& url,
AppWindowContents* app_window_contents,
+ content::RenderFrameHost* creator_frame,
const CreateParams& params) {
// Initialize the render interface and web contents
app_window_contents_.reset(app_window_contents);
- app_window_contents_->Initialize(browser_context(), url);
+ app_window_contents_->Initialize(browser_context(), creator_frame, url);
initial_url_ = url;
diff --git a/extensions/browser/app_window/app_window.h b/extensions/browser/app_window/app_window.h
index 6917c4d..e41575d 100644
--- a/extensions/browser/app_window/app_window.h
+++ b/extensions/browser/app_window/app_window.h
@@ -34,6 +34,7 @@ class DictionaryValue;
namespace content {
class BrowserContext;
+class RenderFrameHost;
class WebContents;
}
@@ -58,6 +59,7 @@ class AppWindowContents {
// Called to initialize the WebContents, before the app window is created.
virtual void Initialize(content::BrowserContext* context,
+ content::RenderFrameHost* creator_frame,
const GURL& url) = 0;
// Called to load the contents, after the app window is created.
@@ -219,6 +221,7 @@ class AppWindow : public content::WebContentsDelegate,
// |app_window_contents| will become owned by AppWindow.
void Init(const GURL& url,
AppWindowContents* app_window_contents,
+ content::RenderFrameHost* creator_frame,
const CreateParams& params);
const std::string& window_key() const { return window_key_; }
diff --git a/extensions/browser/app_window/app_window_contents.cc b/extensions/browser/app_window/app_window_contents.cc
index 7f1a7a1..3cb0cb8 100644
--- a/extensions/browser/app_window/app_window_contents.cc
+++ b/extensions/browser/app_window/app_window_contents.cc
@@ -27,12 +27,15 @@ AppWindowContentsImpl::AppWindowContentsImpl(AppWindow* host)
AppWindowContentsImpl::~AppWindowContentsImpl() {}
void AppWindowContentsImpl::Initialize(content::BrowserContext* context,
+ content::RenderFrameHost* creator_frame,
const GURL& url) {
url_ = url;
- web_contents_.reset(
- content::WebContents::Create(content::WebContents::CreateParams(
- context, content::SiteInstance::CreateForURL(context, url_))));
+ content::WebContents::CreateParams create_params(
+ context, creator_frame->GetSiteInstance());
+ create_params.opener_render_process_id = creator_frame->GetProcess()->GetID();
+ create_params.opener_render_frame_id = creator_frame->GetRoutingID();
+ web_contents_.reset(content::WebContents::Create(create_params));
Observe(web_contents_.get());
web_contents_->GetMutableRendererPrefs()->
diff --git a/extensions/browser/app_window/app_window_contents.h b/extensions/browser/app_window/app_window_contents.h
index 37a4027..732197c 100644
--- a/extensions/browser/app_window/app_window_contents.h
+++ b/extensions/browser/app_window/app_window_contents.h
@@ -32,7 +32,9 @@ class AppWindowContentsImpl : public AppWindowContents,
~AppWindowContentsImpl() override;
// AppWindowContents
- void Initialize(content::BrowserContext* context, const GURL& url) override;
+ void Initialize(content::BrowserContext* context,
+ content::RenderFrameHost* creator_frame,
+ const GURL& url) override;
void LoadContents(int32_t creator_process_id) override;
void NativeWindowChanged(NativeAppWindow* native_app_window) override;
void NativeWindowClosed() override;
diff --git a/extensions/browser/app_window/test_app_window_contents.cc b/extensions/browser/app_window/test_app_window_contents.cc
index 8d3f227..5613a20 100644
--- a/extensions/browser/app_window/test_app_window_contents.cc
+++ b/extensions/browser/app_window/test_app_window_contents.cc
@@ -16,8 +16,8 @@ TestAppWindowContents::~TestAppWindowContents() {
}
void TestAppWindowContents::Initialize(content::BrowserContext* context,
- const GURL& url) {
-}
+ content::RenderFrameHost* creator_frame,
+ const GURL& url) {}
void TestAppWindowContents::LoadContents(int32_t creator_process_id) {}
diff --git a/extensions/browser/app_window/test_app_window_contents.h b/extensions/browser/app_window/test_app_window_contents.h
index f93b682..c118fe6 100644
--- a/extensions/browser/app_window/test_app_window_contents.h
+++ b/extensions/browser/app_window/test_app_window_contents.h
@@ -24,7 +24,9 @@ class TestAppWindowContents : public AppWindowContents {
~TestAppWindowContents() override;
// apps:AppWindowContents:
- void Initialize(content::BrowserContext* context, const GURL& url) override;
+ void Initialize(content::BrowserContext* context,
+ content::RenderFrameHost* creator_frame,
+ const GURL& url) override;
void LoadContents(int32_t creator_process_id) override;
void NativeWindowChanged(NativeAppWindow* native_app_window) override;
void NativeWindowClosed() override;
diff --git a/extensions/renderer/app_window_custom_bindings.cc b/extensions/renderer/app_window_custom_bindings.cc
index 02df633..492731d 100644
--- a/extensions/renderer/app_window_custom_bindings.cc
+++ b/extensions/renderer/app_window_custom_bindings.cc
@@ -51,25 +51,13 @@ void AppWindowCustomBindings::GetFrame(
if (!app_frame)
return;
- // TODO(jeremya): it doesn't really make sense to set the opener here, but we
- // need to make sure the security origin is set up before returning the DOM
- // reference. A better way to do this would be to have the browser pass the
- // opener through so opener_id is set in RenderViewImpl's constructor.
- content::RenderFrame* context_render_frame = context()->GetRenderFrame();
- if (!context_render_frame)
- return;
-
- blink::WebFrame* opener = context_render_frame->GetWebFrame();
- blink::WebLocalFrame* app_web_frame = app_frame->GetWebFrame();
- app_web_frame->setOpener(opener);
-
if (notify_browser) {
content::RenderThread::Get()->Send(new ExtensionHostMsg_AppWindowReady(
app_frame->GetRenderView()->GetRoutingID()));
}
v8::Local<v8::Value> window =
- app_web_frame->mainWorldScriptContext()->Global();
+ app_frame->GetWebFrame()->mainWorldScriptContext()->Global();
args.GetReturnValue().Set(window);
}