Index: Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp b/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
index ffd43a37194622a00808621652dadaf7bf285f01..4ed9effe4302c8b1169e0d9c707a0afc73b1c438 100644 |
--- a/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
+++ b/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
@@ -78,13 +78,13 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info) |
dictionaryArg = Dictionary(info[3], info.GetIsolate(), exceptionState); |
if (exceptionState.throwIfNeeded()) |
return; |
- sequenceStringArg = toImplArray<String>(info[4], 5, info.GetIsolate(), exceptionState); |
+ sequenceStringArg = toImplArray<Vector<String>>(info[4], 5, info.GetIsolate(), exceptionState); |
if (exceptionState.throwIfNeeded()) |
return; |
- sequenceDictionaryArg = toImplArray<Dictionary>(info[5], 6, info.GetIsolate(), exceptionState); |
+ sequenceDictionaryArg = toImplArray<Vector<Dictionary>>(info[5], 6, info.GetIsolate(), exceptionState); |
if (exceptionState.throwIfNeeded()) |
return; |
- sequenceLongOrTestDictionaryArg = toImplArray<LongOrTestDictionary>(info[6], 7, info.GetIsolate(), exceptionState); |
+ sequenceLongOrTestDictionaryArg = toImplArray<Vector<LongOrTestDictionary>>(info[6], 7, info.GetIsolate(), exceptionState); |
if (exceptionState.throwIfNeeded()) |
return; |
if (!isUndefinedOrNull(info[7]) && !info[7]->IsObject()) { |