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

Unified Diff: third_party/WebKit/Source/platform/testing/PictureMatchers.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/testing/PictureMatchers.cpp
diff --git a/third_party/WebKit/Source/platform/testing/PictureMatchers.cpp b/third_party/WebKit/Source/platform/testing/PictureMatchers.cpp
index 1f886fc138d70bfe596c589f1cae3ac2db1756e6..f7fc82552fe90d13b9a14a4633d56a7389482527 100644
--- a/third_party/WebKit/Source/platform/testing/PictureMatchers.cpp
+++ b/third_party/WebKit/Source/platform/testing/PictureMatchers.cpp
@@ -46,7 +46,7 @@ class DrawsRectangleCanvas : public SkCanvas {
SkPaint paintWithAlpha(paint);
paintWithAlpha.setAlpha(static_cast<U8CPU>(m_alpha * paintAlpha / 255));
quadWithColor.color = Color(paintWithAlpha.getColor());
- m_quads.append(quadWithColor);
+ m_quads.push_back(quadWithColor);
SkCanvas::onDrawRect(clippedRect, paint);
}

Powered by Google App Engine
This is Rietveld 408576698