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

Unified Diff: sky/engine/bindings/core/v8/WindowProxy.cpp

Issue 776143003: Remove Isolated Worlds from Sky (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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: sky/engine/bindings/core/v8/WindowProxy.cpp
diff --git a/sky/engine/bindings/core/v8/WindowProxy.cpp b/sky/engine/bindings/core/v8/WindowProxy.cpp
index 886c9e7a512617386918c8b7757b535fa432f86a..95d290c4cb66ca661f71ec06554f9a2f9d4020d5 100644
--- a/sky/engine/bindings/core/v8/WindowProxy.cpp
+++ b/sky/engine/bindings/core/v8/WindowProxy.cpp
@@ -78,7 +78,7 @@ void WindowProxy::disposeContext(GlobalDetachmentBehavior behavior)
v8::HandleScope handleScope(m_isolate);
v8::Handle<v8::Context> context = m_scriptState->context();
- m_frame->loaderClient()->willReleaseScriptContext(context, m_world->worldId());
+ m_frame->loaderClient()->willReleaseScriptContext(context);
if (behavior == DetachGlobal)
context->DetachGlobal();
@@ -196,7 +196,7 @@ bool WindowProxy::initialize()
}
updateDocument();
- m_frame->loaderClient()->didCreateScriptContext(context, m_world->extensionGroup(), m_world->worldId());
+ m_frame->loaderClient()->didCreateScriptContext(context);
return true;
}
« no previous file with comments | « sky/engine/bindings/core/v8/V8PerIsolateData.cpp ('k') | sky/engine/bindings/core/v8/custom/V8CustomEventCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698