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

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

Issue 68563003: Create DOM exceptions in the correct context. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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/V8Initializer.cpp
diff --git a/Source/bindings/v8/V8Initializer.cpp b/Source/bindings/v8/V8Initializer.cpp
index 73283dba0e16fc569d80d6cc8b6bcbef329a74c3..e354b4115bcc185fc22272cb93e11f196613994a 100644
--- a/Source/bindings/v8/V8Initializer.cpp
+++ b/Source/bindings/v8/V8Initializer.cpp
@@ -135,7 +135,7 @@ static void failedAccessCheckCallbackInMainThread(v8::Local<v8::Object> host, v8
return;
DOMWindow* targetWindow = target->domWindow();
- ExceptionState es(v8::Isolate::GetCurrent());
+ ExceptionState es(v8::Handle<v8::Object>(), v8::Isolate::GetCurrent());
es.throwSecurityError(targetWindow->sanitizedCrossDomainAccessErrorMessage(activeDOMWindow()), targetWindow->crossDomainAccessErrorMessage(activeDOMWindow()));
es.throwIfNeeded();
}

Powered by Google App Engine
This is Rietveld 408576698