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

Unified Diff: third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.h

Issue 2809063002: WIP Support var() references in registered custom property keyframes (Closed)
Patch Set: Rebased Created 3 years, 6 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/css/resolver/CSSVariableResolver.h
diff --git a/third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.h b/third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.h
index dbb8a821b4ad55e9ab8b9e77311b7046b72848a8..bf4d02803a7950fff5611c9f27e7f16a710beffd 100644
--- a/third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.h
+++ b/third_party/WebKit/Source/core/css/resolver/CSSVariableResolver.h
@@ -13,10 +13,12 @@
namespace blink {
+class CSSCustomPropertyDeclaration;
class CSSParserTokenRange;
class CSSPendingSubstitutionValue;
class CSSVariableData;
class CSSVariableReferenceValue;
+class PropertyRegistration;
class PropertyRegistry;
class StyleResolverState;
class StyleInheritedVariables;
@@ -28,6 +30,10 @@ class CSSVariableResolver {
public:
CSSVariableResolver(const StyleResolverState&);
+ const CSSValue* ResolveRegisteredCustomPropertyAnimationKeyframe(
+ const PropertyRegistration&,
+ const CSSCustomPropertyDeclaration& keyframe);
+
void ResolveVariableDefinitions();
// Shorthand properties are not supported.

Powered by Google App Engine
This is Rietveld 408576698