| Index: Source/bindings/tests/results/core/V8TestTypedefs.cpp
|
| diff --git a/Source/bindings/tests/results/core/V8TestTypedefs.cpp b/Source/bindings/tests/results/core/V8TestTypedefs.cpp
|
| index ca22edccb04188b3a67a7c0dc76ecf6ab8cef3ba..fe078197dd0962baa3e46bf16c9f16d067d8b362 100644
|
| --- a/Source/bindings/tests/results/core/V8TestTypedefs.cpp
|
| +++ b/Source/bindings/tests/results/core/V8TestTypedefs.cpp
|
| @@ -113,7 +113,7 @@ static void voidMethodArrayOfLongsArgMethod(const v8::FunctionCallbackInfo<v8::V
|
| impl->voidMethodArrayOfLongsArg();
|
| return;
|
| }
|
| - arrayOfLongsArg = toImplArray<int>(info[0], 1, info.GetIsolate(), exceptionState);
|
| + arrayOfLongsArg = toImplArray<Vector<int>>(info[0], 1, info.GetIsolate(), exceptionState);
|
| if (exceptionState.throwIfNeeded())
|
| return;
|
| }
|
| @@ -247,7 +247,7 @@ static void arrayOfStringsMethodArrayOfStringsArgMethod(const v8::FunctionCallba
|
| TestTypedefs* impl = V8TestTypedefs::toImpl(info.Holder());
|
| Vector<String> arrayOfStringsArg;
|
| {
|
| - arrayOfStringsArg = toImplArray<String>(info[0], 1, info.GetIsolate(), exceptionState);
|
| + arrayOfStringsArg = toImplArray<Vector<String>>(info[0], 1, info.GetIsolate(), exceptionState);
|
| if (exceptionState.throwIfNeeded())
|
| return;
|
| }
|
| @@ -272,7 +272,7 @@ static void stringArrayMethodStringArrayArgMethod(const v8::FunctionCallbackInfo
|
| TestTypedefs* impl = V8TestTypedefs::toImpl(info.Holder());
|
| Vector<String> stringArrayArg;
|
| {
|
| - stringArrayArg = toImplArray<String>(info[0], 1, info.GetIsolate(), exceptionState);
|
| + stringArrayArg = toImplArray<Vector<String>>(info[0], 1, info.GetIsolate(), exceptionState);
|
| if (exceptionState.throwIfNeeded())
|
| return;
|
| }
|
|
|