| Index: third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
|
| index 3c49d28a2170039161a2f52b447a161acdd20239..3e6c84fc5a399b8f1f122164d6ed8a5cf9b72d4a 100644
|
| --- a/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
|
| @@ -57,10 +57,10 @@ InterpolationValue PathInterpolationFunctions::convertValue(
|
|
|
| while (pathSource.hasMoreData()) {
|
| const PathSegmentData segment = pathSource.parseSegment();
|
| - interpolablePathSegs.append(
|
| + interpolablePathSegs.push_back(
|
| SVGPathSegInterpolationFunctions::consumePathSeg(segment,
|
| currentCoordinates));
|
| - pathSegTypes.append(segment.command);
|
| + pathSegTypes.push_back(segment.command);
|
| length++;
|
| }
|
|
|
| @@ -118,7 +118,8 @@ class UnderlyingPathSegTypesChecker
|
| InterpolationValue PathInterpolationFunctions::maybeConvertNeutral(
|
| const InterpolationValue& underlying,
|
| InterpolationType::ConversionCheckers& conversionCheckers) {
|
| - conversionCheckers.append(UnderlyingPathSegTypesChecker::create(underlying));
|
| + conversionCheckers.push_back(
|
| + UnderlyingPathSegTypesChecker::create(underlying));
|
| std::unique_ptr<InterpolableList> result =
|
| InterpolableList::create(PathComponentIndexCount);
|
| result->set(PathArgsIndex, toInterpolableList(*underlying.interpolableValue)
|
|
|