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

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

Issue 2812523002: Support animating <resolution> custom properties (Closed)
Patch Set: Created 3 years, 8 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/CSSResolutionInterpolationType.h
diff --git a/third_party/WebKit/Source/core/animation/CSSResolutionInterpolationType.h b/third_party/WebKit/Source/core/animation/CSSResolutionInterpolationType.h
new file mode 100644
index 0000000000000000000000000000000000000000..4a784112b25d440368f9d4e0e3ffd46ee2662d46
--- /dev/null
+++ b/third_party/WebKit/Source/core/animation/CSSResolutionInterpolationType.h
@@ -0,0 +1,59 @@
+// 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 CSSResolutionInterpolationType_h
+#define CSSResolutionInterpolationType_h
+
+#include "core/animation/CSSInterpolationType.h"
+
+namespace blink {
+
+class CSSResolutionInterpolationType : public CSSInterpolationType {
+ public:
+ CSSResolutionInterpolationType(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.
+ // CSSResolutionInterpolationType is only accessible via registered custom CSS
+ // properties as there are no standard properties that interpolate resolution
+ // values.
+ 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 // CSSResolutionInterpolationType_h

Powered by Google App Engine
This is Rietveld 408576698