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

Unified Diff: Source/core/animation/LengthPairStyleInterpolation.h

Issue 813233002: Animation: Fix loss of type information when interpolating value of 0 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Attempt no2 at fixing linux oilpan errors Created 6 years 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: Source/core/animation/LengthPairStyleInterpolation.h
diff --git a/Source/core/animation/LengthPairStyleInterpolation.h b/Source/core/animation/LengthPairStyleInterpolation.h
index 18e2a280832df47f1dc6dea9bbd1ac8c7cc2dd04..e7b78eecfc3256b42565d7e7a7017b0260eb47a3 100644
--- a/Source/core/animation/LengthPairStyleInterpolation.h
+++ b/Source/core/animation/LengthPairStyleInterpolation.h
@@ -12,6 +12,7 @@ namespace blink {
class LengthPairStyleInterpolation : public StyleInterpolation {
public:
+
samli 2014/12/22 03:38:04 remove new line
static PassRefPtrWillBeRawPtr<LengthPairStyleInterpolation> create(const CSSValue& start, const CSSValue& end, CSSPropertyID id, ValueRange range)
{
return adoptRefWillBeNoop(new LengthPairStyleInterpolation(lengthPairToInterpolableValue(start), lengthPairToInterpolableValue(end), id, range));
@@ -20,6 +21,8 @@ public:
static bool canCreateFrom(const CSSValue&);
virtual void apply(StyleResolverState&) const override;
+ virtual void trace(Visitor*) override;
+
private:
LengthPairStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id, ValueRange range)

Powered by Google App Engine
This is Rietveld 408576698