| Index: third_party/WebKit/Source/bindings/core/v8/custom/V8CustomEventCustom.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8CustomEventCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8CustomEventCustom.cpp
|
| index c7dbf21817a93472ba56a9501ff032a3d0014000..6f10be994a901f249eec7be1640217eeef29b699 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/custom/V8CustomEventCustom.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8CustomEventCustom.cpp
|
| @@ -63,9 +63,8 @@ static void storeDetail(ScriptState* scriptState,
|
|
|
| void V8CustomEvent::constructorCustom(
|
| const v8::FunctionCallbackInfo<v8::Value>& info) {
|
| - ExceptionState exceptionState(ExceptionState::ConstructionContext,
|
| - "CustomEvent", info.Holder(),
|
| - info.GetIsolate());
|
| + ExceptionState exceptionState(
|
| + info.GetIsolate(), ExceptionState::ConstructionContext, "CustomEvent");
|
| if (UNLIKELY(info.Length() < 1)) {
|
| exceptionState.throwTypeError(
|
| ExceptionMessages::notEnoughArguments(1, info.Length()));
|
|
|