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

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGMarkerData.h

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/SVGMarkerData.h
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGMarkerData.h b/third_party/WebKit/Source/core/layout/svg/SVGMarkerData.h
index 4dcb7005afc01bd2700199dae89d3ef62bb9c148..cba98b340c20cfe4d30ed83f706c3108b84dc4e4 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGMarkerData.h
+++ b/third_party/WebKit/Source/core/layout/svg/SVGMarkerData.h
@@ -56,7 +56,7 @@ class SVGMarkerData {
}
void pathIsDone() {
- m_positions.append(
+ m_positions.push_back(
MarkerPosition(EndMarker, m_origin, currentAngle(EndMarker)));
}
@@ -121,7 +121,7 @@ class SVGMarkerData {
// Record the marker for the previous element.
if (m_elementIndex > 0) {
SVGMarkerType markerType = m_elementIndex == 1 ? StartMarker : MidMarker;
- m_positions.append(
+ m_positions.push_back(
MarkerPosition(markerType, m_origin, currentAngle(markerType)));
}

Powered by Google App Engine
This is Rietveld 408576698