Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Unified Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp

Issue 2651583007: Plumbing blink::Interface{Provider|Registry} through WebLocalFrame's constructor. (Closed)
Patch Set: Rebasing... Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
index 4d5220c0cb544c02882b9d40b227dac03fcaac0d..ec573b5074669e8af726a4c74d915dc1d82b1178 100644
--- a/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp
@@ -332,10 +332,13 @@ WebLocalFrame* WebRemoteFrameImpl::createLocalChild(
const WebString& uniqueName,
WebSandboxFlags sandboxFlags,
WebFrameClient* client,
+ blink::InterfaceProvider* interfaceProvider,
+ blink::InterfaceRegistry* interfaceRegistry,
WebFrame* previousSibling,
const WebFrameOwnerProperties& frameOwnerProperties,
WebFrame* opener) {
- WebLocalFrameImpl* child = WebLocalFrameImpl::create(scope, client, opener);
+ WebLocalFrameImpl* child = WebLocalFrameImpl::create(
+ scope, client, interfaceProvider, interfaceRegistry, opener);
insertAfter(child, previousSibling);
RemoteFrameOwner* owner = RemoteFrameOwner::create(
static_cast<SandboxFlags>(sandboxFlags), frameOwnerProperties);
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.h ('k') | third_party/WebKit/Source/web/WebSharedWorkerImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698