| 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..f55c6017d2b4e0dd65e52bf63e7a08a913621f07 100644
|
| --- a/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp
|
| +++ b/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp
|
| @@ -59,7 +59,7 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| Dictionary dictionaryArg;
|
| Vector<String> sequenceStringArg;
|
| Vector<Dictionary> sequenceDictionaryArg;
|
| - Vector<LongOrTestDictionary> sequenceLongOrTestDictionaryArg;
|
| + HeapVector<LongOrTestDictionary> sequenceLongOrTestDictionaryArg;
|
| Dictionary optionalDictionaryArg;
|
| TestInterfaceEmpty* optionalTestInterfaceEmptyArg;
|
| {
|
| @@ -84,7 +84,7 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| sequenceDictionaryArg = toImplArray<Dictionary>(info[5], 6, info.GetIsolate(), exceptionState);
|
| if (exceptionState.throwIfNeeded())
|
| return;
|
| - sequenceLongOrTestDictionaryArg = toImplArray<LongOrTestDictionary>(info[6], 7, info.GetIsolate(), exceptionState);
|
| + sequenceLongOrTestDictionaryArg = toImplHeapArray<LongOrTestDictionary>(info[6], 7, info.GetIsolate(), exceptionState);
|
| if (exceptionState.throwIfNeeded())
|
| return;
|
| if (!isUndefinedOrNull(info[7]) && !info[7]->IsObject()) {
|
|
|