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

Unified Diff: Source/bindings/v8/V8WorkerContextErrorHandler.cpp

Issue 14334002: Delete WorldContextHandle in favor of DOMWrapperWorld (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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: Source/bindings/v8/V8WorkerContextErrorHandler.cpp
diff --git a/Source/bindings/v8/V8WorkerContextErrorHandler.cpp b/Source/bindings/v8/V8WorkerContextErrorHandler.cpp
index d69b74094ad1b20720bd6ba27e8fb9f4d8b7b1e4..87a3b20740bfb549329cbfbcb3566c1dbbd429e5 100644
--- a/Source/bindings/v8/V8WorkerContextErrorHandler.cpp
+++ b/Source/bindings/v8/V8WorkerContextErrorHandler.cpp
@@ -48,7 +48,7 @@ v8::Local<v8::Value> V8WorkerContextErrorHandler::callListenerFunction(ScriptExe
{
ASSERT(event->hasInterface(eventNames().interfaceForErrorEvent));
v8::Local<v8::Object> listener = getListenerObject(context);
- v8::Isolate* isolate = toV8Context(context, worldContext())->GetIsolate();
+ v8::Isolate* isolate = toV8Context(context, world())->GetIsolate();
v8::Local<v8::Value> returnValue;
if (!listener.IsEmpty() && listener->IsFunction()) {
ErrorEvent* errorEvent = static_cast<ErrorEvent*>(event);

Powered by Google App Engine
This is Rietveld 408576698