Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5189)

Unified Diff: Source/core/testing/UnionTypesTest.cpp

Issue 1118993002: Oilpan: IDL union objects should be put in HeapVector (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/testing/UnionTypesTest.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « Source/core/testing/UnionTypesTest.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698