| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
|
| index 19a6da70d5fc129b5d62dcafd70f882e05f51627..ec2eaf093754d08768cb8489a02bdcab3235696b 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
|
| @@ -7171,7 +7171,7 @@ static void promiseMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
|
|
|
| return;
|
| }
|
| - arg2 = Dictionary(info[1], info.GetIsolate(), exceptionState);
|
| + arg2 = Dictionary(info.GetIsolate(), info[1], exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
|
|
| @@ -7207,7 +7207,7 @@ static void promiseMethodWithoutExceptionStateMethod(const v8::FunctionCallbackI
|
|
|
| return;
|
| }
|
| - arg1 = Dictionary(info[0], info.GetIsolate(), exceptionState);
|
| + arg1 = Dictionary(info.GetIsolate(), info[0], exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
|
|
| @@ -7254,7 +7254,7 @@ static void voidMethodDictionaryArgMethod(const v8::FunctionCallbackInfo<v8::Val
|
|
|
| return;
|
| }
|
| - dictionaryArg = Dictionary(info[0], info.GetIsolate(), exceptionState);
|
| + dictionaryArg = Dictionary(info.GetIsolate(), info[0], exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
|
|
| @@ -7735,7 +7735,7 @@ static void voidMethodOptionalDictionaryArgMethod(const v8::FunctionCallbackInfo
|
|
|
| return;
|
| }
|
| - optionalDictionaryArg = Dictionary(info[0], info.GetIsolate(), exceptionState);
|
| + optionalDictionaryArg = Dictionary(info.GetIsolate(), info[0], exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
|
|
|
|