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

Unified Diff: third_party/WebKit/Source/core/css/PropertyRegistry.cpp

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 | « third_party/WebKit/Source/core/css/PropertyRegistry.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/PropertyRegistry.cpp
diff --git a/third_party/WebKit/Source/core/css/PropertyRegistry.cpp b/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
index 7bb0153b1deef295a1fd0ac7ffecd26e70d15a90..478893a5c0881f59c55449715f2551d4d257b6b8 100644
--- a/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
+++ b/third_party/WebKit/Source/core/css/PropertyRegistry.cpp
@@ -12,12 +12,12 @@ void PropertyRegistry::registerProperty(
bool inherits,
const CSSValue* initial,
PassRefPtr<CSSVariableData> initialVariableData,
- InterpolationTypes interpolationTypes) {
+ CSSInterpolationTypes cssInterpolationTypes) {
DCHECK(!registration(name));
- m_registrations.set(name,
- new PropertyRegistration(syntax, inherits, initial,
- std::move(initialVariableData),
- std::move(interpolationTypes)));
+ m_registrations.set(
+ name, new PropertyRegistration(syntax, inherits, initial,
+ std::move(initialVariableData),
+ std::move(cssInterpolationTypes)));
}
const PropertyRegistration* PropertyRegistry::registration(
« no previous file with comments | « third_party/WebKit/Source/core/css/PropertyRegistry.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698