| 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 {
|
|
|