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

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

Issue 215883005: Web Animations: Introduce String based KeyframeEffectModel (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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: Source/core/animation/Interpolation.h
diff --git a/Source/core/animation/Interpolation.h b/Source/core/animation/Interpolation.h
index e565da02192101eeae4bd8b366533dd1b98c70d1..3d21626e7bde4dfc5ac3f6265280e1745bb6f8e4 100644
--- a/Source/core/animation/Interpolation.h
+++ b/Source/core/animation/Interpolation.h
@@ -45,7 +45,6 @@ private:
friend class AnimationInterpolableValueTest;
friend class AnimationInterpolationEffectTest;
-
};
class StyleInterpolation : public Interpolation {
@@ -84,7 +83,7 @@ public:
virtual void apply(StyleResolverState&) const;
virtual bool isLegacyStyleInterpolation() const OVERRIDE FINAL { return true; }
- AnimatableValue* currentValue() const
+ PassRefPtr<AnimatableValue> currentValue() const
{
InterpolableAnimatableValue* value = static_cast<InterpolableAnimatableValue*>(m_cachedValue.get());
return value->value();

Powered by Google App Engine
This is Rietveld 408576698