| Index: third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp b/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp
|
| index cd94ba0cf895df70d4fe746703fdbf25f233e2c2..abc818307edb316a92c51193edb38ce4667dcb37 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/ContiguousContainerTest.cpp
|
| @@ -203,7 +203,7 @@ TEST(ContiguousContainerTest, ElementAddressesAreStable) {
|
| ContiguousContainer<Point2D, kPointAlignment> list(kMaxPointSize);
|
| Vector<Point2D*> pointers;
|
| for (int i = 0; i < (int)kNumElements; i++)
|
| - pointers.append(&list.allocateAndConstruct<Point2D>());
|
| + pointers.push_back(&list.allocateAndConstruct<Point2D>());
|
| EXPECT_EQ(kNumElements, list.size());
|
| EXPECT_EQ(kNumElements, pointers.size());
|
|
|
| @@ -283,7 +283,7 @@ TEST(ContiguousContainerTest, IterationAfterRemoveLast) {
|
| // Utilities which keep these two lists in sync and check that their
|
| // iteration order matches.
|
| auto push = [&list, &pointers]() {
|
| - pointers.append(&list.allocateAndConstruct<SmallStruct>());
|
| + pointers.push_back(&list.allocateAndConstruct<SmallStruct>());
|
| };
|
| auto pop = [&list, &pointers]() {
|
| pointers.pop_back();
|
|
|