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

Unified Diff: third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp

Issue 2615813003: Migrate WTF::Vector::append() to ::push_back() [part 14 of N] (Closed)
Patch Set: rebase, small fix in FontSettings.h Created 3 years, 11 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
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)));

Powered by Google App Engine
This is Rietveld 408576698