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

Unified Diff: third_party/WebKit/Source/core/animation/css/CSSAnimations.h

Issue 2236193002: WIP: Implement CSS transitions on top of InterpolationTypes instead of AnimatableValues (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_environmentStyle
Patch Set: Created 4 years, 4 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/css/CSSAnimations.h
diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimations.h b/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
index 41b533f73806cde1967de1c23bca8500160bc4ff..5cbe4b556db0ea53ccde782b345ea1d5f49beb49 100644
--- a/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
+++ b/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
@@ -123,8 +123,8 @@ private:
}
Member<Animation> animation;
- const AnimatableValue* from;
- const AnimatableValue* to;
+ RefPtr<AnimatableValue> from;
+ RefPtr<AnimatableValue> to;
RefPtr<AnimatableValue> reversingAdjustedStartValue;
double reversingShorteningFactor;
};

Powered by Google App Engine
This is Rietveld 408576698