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

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

Issue 2692273010: Support animating <angle> custom properties (Closed)
Patch Set: norebaseline Created 3 years, 10 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/core/animation/CSSAngleInterpolationType.h
diff --git a/third_party/WebKit/Source/core/animation/CSSAngleInterpolationType.h b/third_party/WebKit/Source/core/animation/CSSAngleInterpolationType.h
new file mode 100644
index 0000000000000000000000000000000000000000..54558284ec5557ca959464be099b7bf41f82b910
--- /dev/null
+++ b/third_party/WebKit/Source/core/animation/CSSAngleInterpolationType.h
@@ -0,0 +1,58 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CSSAngleInterpolationType_h
+#define CSSAngleInterpolationType_h
+
+#include "core/animation/CSSInterpolationType.h"
+
+namespace blink {
+
+class CSSAngleInterpolationType : public CSSInterpolationType {
+ public:
+ CSSAngleInterpolationType(PropertyHandle property)
+ : CSSInterpolationType(property) {
+ DCHECK(property.isCSSCustomProperty());
+ }
+
+ InterpolationValue maybeConvertNeutral(const InterpolationValue& underlying,
+ ConversionCheckers&) const final;
+ InterpolationValue maybeConvertValue(const CSSValue&,
+ const StyleResolverState*,
+ ConversionCheckers&) const final;
+
+ const CSSValue* createCSSValue(const InterpolableValue&,
+ const NonInterpolableValue*,
+ const StyleResolverState&) const final;
+
+ private:
+ // These methods only apply to CSSInterpolationTypes used by standard CSS
+ // properties.
+ // CSSAngleInterpolationType is only accessible via registered custom CSS
+ // properties.
+ InterpolationValue maybeConvertStandardPropertyUnderlyingValue(
+ const ComputedStyle&) const final {
+ NOTREACHED();
+ return nullptr;
+ }
+ void applyStandardPropertyValue(const InterpolableValue&,
+ const NonInterpolableValue*,
+ StyleResolverState&) const final {
+ NOTREACHED();
+ }
+ InterpolationValue maybeConvertInitial(const StyleResolverState&,
+ ConversionCheckers&) const final {
+ NOTREACHED();
+ return nullptr;
+ }
+ InterpolationValue maybeConvertInherit(const StyleResolverState&,
+ ConversionCheckers&) const final {
+ NOTREACHED();
+ return nullptr;
+ }
+};
+
+} // namespace blink
+
+#endif // CSSAngleInterpolationType_h

Powered by Google App Engine
This is Rietveld 408576698