| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp
|
| index 4b4582bf626118f10397cc4532673e4ed8aae538..bc90fd60584373ca19442d708c648c53528cfe45 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp
|
| @@ -73,7 +73,7 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
|
|
| return;
|
| }
|
| - dictionaryArg = Dictionary(info[0], info.GetIsolate(), exceptionState);
|
| + dictionaryArg = Dictionary(info.GetIsolate(), info[0], exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
|
|
| @@ -139,7 +139,7 @@ static void constructor4(const v8::FunctionCallbackInfo<v8::Value>& info) {
|
|
|
| return;
|
| }
|
| - defaultUndefinedOptionalDictionaryArg = Dictionary(info[4], info.GetIsolate(), exceptionState);
|
| + defaultUndefinedOptionalDictionaryArg = Dictionary(info.GetIsolate(), info[4], exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
|
|
|
|