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

Unified Diff: third_party/WebKit/Source/modules/canvas2d/ClipList.cpp

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: 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/modules/canvas2d/ClipList.cpp
diff --git a/third_party/WebKit/Source/modules/canvas2d/ClipList.cpp b/third_party/WebKit/Source/modules/canvas2d/ClipList.cpp
index 24fad9895e12b92fd3709fad351d9abad6bfb1a7..5b791bfc495374f6bb04530c56a0cc227733768e 100644
--- a/third_party/WebKit/Source/modules/canvas2d/ClipList.cpp
+++ b/third_party/WebKit/Source/modules/canvas2d/ClipList.cpp
@@ -24,7 +24,7 @@ void ClipList::clipPath(const SkPath& path,
else
Op(m_currentClipPath, path, SkPathOp::kIntersect_SkPathOp,
&m_currentClipPath);
- m_clipList.append(newClip);
+ m_clipList.push_back(newClip);
}
void ClipList::playback(SkCanvas* canvas) const {

Powered by Google App Engine
This is Rietveld 408576698