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

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

Issue 2831273002: Split active animation interpolation storage between standard and custom properties (Closed)
Patch Set: Review Review changes Created 3 years, 7 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 a901524ebd45663d0e0752fc90760646bcbd1bee..248480473a4ba98846ab56641bd5373ad8ed2f64 100644
--- a/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
+++ b/third_party/WebKit/Source/core/animation/css/CSSAnimations.h
@@ -64,7 +64,6 @@ class CSSAnimations final {
static bool IsAnimationAffectingProperty(CSSPropertyID);
static bool IsAffectedByKeyframesFromScope(const Element&, const TreeScope&);
static bool IsAnimatingCustomProperties(const ElementAnimations*);
- static bool IsCustomPropertyHandle(const PropertyHandle&);
static void CalculateAnimationUpdate(CSSAnimationUpdate&,
const Element* animating_element,
Element&,
@@ -157,7 +156,9 @@ class CSSAnimations final {
CSSAnimationUpdate pending_update_;
- ActiveInterpolationsMap previous_active_interpolations_for_animations_;
+ ActiveInterpolationsMap previous_active_interpolations_for_custom_animations_;
+ ActiveInterpolationsMap
+ previous_active_interpolations_for_standard_animations_;
struct TransitionUpdateState {
STACK_ALLOCATED();

Powered by Google App Engine
This is Rietveld 408576698