Index: third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp |
diff --git a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp |
index 2a6653185f414b82cb24d80e8c0f1b3542253d2b..6dcdc91f44a3fa051e6c6305458e63af2fec0691 100644 |
--- a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp |
+++ b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp |
@@ -479,7 +479,7 @@ TEST_F(PaintArtifactCompositorTestWithPropertyTrees, NestedClips) { |
TEST_F(PaintArtifactCompositorTestWithPropertyTrees, DeeplyNestedClips) { |
Vector<RefPtr<ClipPaintPropertyNode>> clips; |
for (unsigned i = 1; i <= 10; i++) { |
- clips.append(ClipPaintPropertyNode::create( |
+ clips.push_back(ClipPaintPropertyNode::create( |
clips.isEmpty() ? ClipPaintPropertyNode::root() : clips.back(), |
TransformPaintPropertyNode::root(), |
FloatRoundedRect(5 * i, 0, 100, 200 - 10 * i))); |