| Index: Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp
|
| diff --git a/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp b/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp
|
| index ca6f6dd22319503548521f5e8d74b0b6e2bcd458..1e47a99a0b6817958dfbb489a255a61b59e414f4 100644
|
| --- a/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp
|
| +++ b/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp
|
| @@ -49,7 +49,7 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| Dictionary dictionaryArg;
|
| {
|
| if (!isUndefinedOrNull(info[0]) && !info[0]->IsObject()) {
|
| - V8ThrowException::throwTypeError(ExceptionMessages::failedToConstruct("TestInterfaceConstructor2", "parameter 1 ('dictionaryArg') is not an object."), info.GetIsolate());
|
| + V8ThrowException::throwTypeError(info.GetIsolate(), ExceptionMessages::failedToConstruct("TestInterfaceConstructor2", "parameter 1 ('dictionaryArg') is not an object."));
|
| return;
|
| }
|
| dictionaryArg = Dictionary(info[0], info.GetIsolate());
|
| @@ -175,7 +175,7 @@ void V8TestInterfaceConstructor2::constructorCallback(const v8::FunctionCallback
|
| {
|
| TRACE_EVENT_SCOPED_SAMPLING_STATE("blink", "DOMConstructor");
|
| if (!info.IsConstructCall()) {
|
| - V8ThrowException::throwTypeError(ExceptionMessages::constructorNotCallableAsFunction("TestInterfaceConstructor2"), info.GetIsolate());
|
| + V8ThrowException::throwTypeError(info.GetIsolate(), ExceptionMessages::constructorNotCallableAsFunction("TestInterfaceConstructor2"));
|
| return;
|
| }
|
|
|
|
|