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

Unified Diff: third_party/WebKit/Source/core/animation/SVGPathInterpolationType.h

Issue 1441853002: Web Animations: Add SVGPathInterpolationType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_svgNumberListInterpolationType
Patch Set: Rebased Created 5 years 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/animation/SVGPathInterpolationType.h
diff --git a/third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.h b/third_party/WebKit/Source/core/animation/SVGPathInterpolationType.h
similarity index 78%
copy from third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.h
copy to third_party/WebKit/Source/core/animation/SVGPathInterpolationType.h
index d1ec5bf5a53c3ace86d113a52695d54d126b0af1..680ce35d93f1b793d7546b4ddbe188d85f089d73 100644
--- a/third_party/WebKit/Source/core/animation/SVGPointListInterpolationType.h
+++ b/third_party/WebKit/Source/core/animation/SVGPathInterpolationType.h
@@ -2,22 +2,22 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef SVGPointListInterpolationType_h
-#define SVGPointListInterpolationType_h
+#ifndef SVGPathInterpolationType_h
+#define SVGPathInterpolationType_h
#include "core/animation/SVGInterpolationType.h"
namespace blink {
-class SVGPointListInterpolationType : public SVGInterpolationType {
+class SVGPathInterpolationType : public SVGInterpolationType {
public:
- SVGPointListInterpolationType(const QualifiedName& attribute)
+ SVGPathInterpolationType(const QualifiedName& attribute)
: SVGInterpolationType(attribute)
{ }
private:
- PassOwnPtr<InterpolationValue> maybeConvertNeutral(const UnderlyingValue&, ConversionCheckers&) const final;
PassOwnPtr<InterpolationValue> maybeConvertSVGValue(const SVGPropertyBase& svgValue) const final;
+ PassOwnPtr<InterpolationValue> maybeConvertNeutral(const UnderlyingValue&, ConversionCheckers&) const final;
PassOwnPtr<PairwisePrimitiveInterpolation> mergeSingleConversions(InterpolationValue& startValue, InterpolationValue& endValue) const final;
void composite(UnderlyingValue&, double underlyingFraction, const InterpolationValue&) const final;
PassRefPtrWillBeRawPtr<SVGPropertyBase> appliedSVGValue(const InterpolableValue&, const NonInterpolableValue*) const final;
@@ -25,4 +25,4 @@ private:
} // namespace blink
-#endif // SVGPointListInterpolationType_h
+#endif // SVGPathInterpolationType_h

Powered by Google App Engine
This is Rietveld 408576698