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

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

Issue 2309873003: Extend PropertyHandle to include custom property identifiers (Closed)
Patch Set: Add unit tests Created 4 years, 3 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/CSSInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
index 67d09d114977f14bf53f895fb985152f753a3ab7..c50d5d83698c862c22ce7f1252446fa26195955e 100644
--- a/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
@@ -41,8 +41,8 @@ private:
Persistent<const CSSValue> m_resolvedValue;
};
-CSSInterpolationType::CSSInterpolationType(CSSPropertyID property)
- : InterpolationType(PropertyHandle(property))
+CSSInterpolationType::CSSInterpolationType(PropertyHandle property)
+ : InterpolationType(property)
{
DCHECK(!isShorthandProperty(cssProperty()));
}

Powered by Google App Engine
This is Rietveld 408576698