| Index: third_party/WebKit/Source/platform/graphics/PathTraversalState.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/PathTraversalState.cpp b/third_party/WebKit/Source/platform/graphics/PathTraversalState.cpp
|
| index dcc537d727724ece545f89522dd4bba8a49196e8..17cc32364bfac33d381187d5e95b1046f4d3fe4e 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/PathTraversalState.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/PathTraversalState.cpp
|
| @@ -129,7 +129,7 @@ static float curveLength(PathTraversalState& traversalState, CurveType curve) {
|
| return 0;
|
|
|
| Vector<CurveType> curveStack;
|
| - curveStack.append(curve);
|
| + curveStack.push_back(curve);
|
|
|
| float totalLength = 0;
|
| do {
|
| @@ -143,7 +143,7 @@ static float curveLength(PathTraversalState& traversalState, CurveType curve) {
|
| CurveType rightCurve;
|
| curve.split(leftCurve, rightCurve);
|
| curve = leftCurve;
|
| - curveStack.append(rightCurve);
|
| + curveStack.push_back(rightCurve);
|
| } else {
|
| totalLength += length;
|
| if (traversalState.m_action ==
|
|
|