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

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

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/CSSTextIndentInterpolationType.h
diff --git a/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.h b/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.h
index 379311150e542ba0747dd6cac3d1de656354223a..7ded5a38f23b88dafc2cee7dddbb71141071cf02 100644
--- a/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.h
+++ b/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.h
@@ -11,10 +11,10 @@ namespace blink {
class CSSTextIndentInterpolationType : public CSSInterpolationType {
public:
- CSSTextIndentInterpolationType(CSSPropertyID property)
+ CSSTextIndentInterpolationType(PropertyHandle property)
: CSSInterpolationType(property)
{
- DCHECK_EQ(property, CSSPropertyTextIndent);
+ DCHECK_EQ(cssProperty(), CSSPropertyTextIndent);
}
InterpolationValue maybeConvertUnderlyingValue(const InterpolationEnvironment&) const final;

Powered by Google App Engine
This is Rietveld 408576698