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

Unified Diff: Source/bindings/v8/V8WindowErrorHandler.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/V8WindowErrorHandler.cpp
diff --git a/Source/bindings/v8/V8WindowErrorHandler.cpp b/Source/bindings/v8/V8WindowErrorHandler.cpp
index 9de174a833966f85fc80c887d44df495d8426f59..50f9f1573af8b0d73a9f10ac880fbfa3a4c47f4d 100644
--- a/Source/bindings/v8/V8WindowErrorHandler.cpp
+++ b/Source/bindings/v8/V8WindowErrorHandler.cpp
@@ -51,7 +51,7 @@ v8::Local<v8::Value> V8WindowErrorHandler::callListenerFunction(ScriptExecutionC
ErrorEvent* errorEvent = static_cast<ErrorEvent*>(event);
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()) {
v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);

Powered by Google App Engine
This is Rietveld 408576698