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

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

Issue 2654783004: Store PropertyRegistry::Registrations on CSSInterpolationTypes for registered custom properties (Closed)
Patch Set: Rebased 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/CSSInterpolationType.h
diff --git a/third_party/WebKit/Source/core/animation/CSSInterpolationType.h b/third_party/WebKit/Source/core/animation/CSSInterpolationType.h
index 3628fd6fd6c5d4cf6e74f0d81256f186a4ed32c2..2c9b9ee29e45a719ab2abc1e291a20cf44ae0f3b 100644
--- a/third_party/WebKit/Source/core/animation/CSSInterpolationType.h
+++ b/third_party/WebKit/Source/core/animation/CSSInterpolationType.h
@@ -11,8 +11,12 @@
namespace blink {
class CSSCustomPropertyDeclaration;
+class PropertyRegistration;
class CSSInterpolationType : public InterpolationType {
+ public:
+ void setCustomPropertyRegistration(const PropertyRegistration&);
+
protected:
CSSInterpolationType(PropertyHandle);
@@ -75,6 +79,8 @@ class CSSInterpolationType : public InterpolationType {
void applyCustomPropertyValue(const InterpolableValue&,
const NonInterpolableValue*,
StyleResolverState&) const;
+
+ WeakPersistent<const PropertyRegistration> m_registration;
};
} // namespace blink
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698