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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/custom/V8DocumentCustom.cpp

Issue 2566823002: Remove deprecated ExceptionState constructors. (Closed)
Patch Set: Created 4 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: third_party/WebKit/Source/bindings/core/v8/custom/V8DocumentCustom.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8DocumentCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8DocumentCustom.cpp
index 8085fad3b879158705990c438c03f470293c580f..3598aa2f2b7cdcf2e3bc339bb52e901c435d7e98 100644
--- a/third_party/WebKit/Source/bindings/core/v8/custom/V8DocumentCustom.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8DocumentCustom.cpp
@@ -93,8 +93,8 @@ void V8Document::openMethodCustom(
return;
}
- ExceptionState exceptionState(ExceptionState::ExecutionContext, "open",
- "Document", info.Holder(), info.GetIsolate());
+ ExceptionState exceptionState(
+ info.GetIsolate(), ExceptionState::ExecutionContext, "Document", "open");
document->open(enteredDOMWindow(info.GetIsolate())->document(),
exceptionState);

Powered by Google App Engine
This is Rietveld 408576698