Index: Source/core/testing/UnionTypesTest.cpp |
diff --git a/Source/core/testing/UnionTypesTest.cpp b/Source/core/testing/UnionTypesTest.cpp |
index 9a5f081938e659fe055e9856929d2f092c8ae0bc..0b0fed4f477507265612264a0036598de713eadb 100644 |
--- a/Source/core/testing/UnionTypesTest.cpp |
+++ b/Source/core/testing/UnionTypesTest.cpp |
@@ -68,7 +68,7 @@ String UnionTypesTest::doubleOrInternalEnumArg(DoubleOrInternalEnum& doubleOrInt |
return String(); |
} |
-String UnionTypesTest::doubleOrStringArrayArg(Vector<DoubleOrString>& array) |
+String UnionTypesTest::doubleOrStringArrayArg(HeapVector<DoubleOrString>& array) |
{ |
if (!array.size()) |
return ""; |
@@ -87,7 +87,7 @@ String UnionTypesTest::doubleOrStringArrayArg(Vector<DoubleOrString>& array) |
return builder.substring(0, builder.length() - 2); |
} |
-String UnionTypesTest::doubleOrStringSequenceArg(Vector<DoubleOrString>& sequence) |
+String UnionTypesTest::doubleOrStringSequenceArg(HeapVector<DoubleOrString>& sequence) |
{ |
return doubleOrStringArrayArg(sequence); |
} |