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

Unified Diff: third_party/WebKit/Source/bindings/modules/v8/V8ServiceWorkerMessageEventInternal.h

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/modules/v8/V8ServiceWorkerMessageEventInternal.h
diff --git a/third_party/WebKit/Source/bindings/modules/v8/V8ServiceWorkerMessageEventInternal.h b/third_party/WebKit/Source/bindings/modules/v8/V8ServiceWorkerMessageEventInternal.h
index 47474cc8dd73e268920eb14bb4f5642466385570..361572365378381cfc0f33104d8947cb7ae9a300 100644
--- a/third_party/WebKit/Source/bindings/modules/v8/V8ServiceWorkerMessageEventInternal.h
+++ b/third_party/WebKit/Source/bindings/modules/v8/V8ServiceWorkerMessageEventInternal.h
@@ -25,9 +25,8 @@ template <typename EventType, typename DictType>
void V8ServiceWorkerMessageEventInternal::constructorCustom(
const v8::FunctionCallbackInfo<v8::Value>& info) {
ExceptionState exceptionState(
- ExceptionState::ConstructionContext,
- V8TypeOf<EventType>::Type::wrapperTypeInfo.interfaceName, info.Holder(),
- info.GetIsolate());
+ info.GetIsolate(), ExceptionState::ConstructionContext,
+ V8TypeOf<EventType>::Type::wrapperTypeInfo.interfaceName);
if (UNLIKELY(info.Length() < 1)) {
exceptionState.throwTypeError(
ExceptionMessages::notEnoughArguments(1, info.Length()));

Powered by Google App Engine
This is Rietveld 408576698