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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp

Issue 2610253004: Migrate WTF::Vector::append() to ::push_back() [part 9 of N] (Closed)
Patch Set: rebase 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/core/layout/svg/LayoutSVGImage.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
index ccd206be5f53d066e4dadfac2e99482cb064c4fd..441643427cdc8d1e6d5557c0dc53efb8f4bbee9e 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
@@ -206,7 +206,7 @@ void LayoutSVGImage::addOutlineRects(Vector<LayoutRect>& rects,
IncludeBlockVisualOverflowOrNot) const {
// this is called from paint() after the localTransform has already been
// applied
- rects.append(LayoutRect(visualRectInLocalSVGCoordinates()));
+ rects.push_back(LayoutRect(visualRectInLocalSVGCoordinates()));
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698