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

Unified Diff: sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp

Issue 772673002: Fix Animations, Remove Compostior Animations. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: CompositorPendingAnimations -> PendingAnimations 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
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareNonInheritedData.h ('k') | sky/examples/animation/basic.sky » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
diff --git a/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp b/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
index 9d60bd10973c4cbc5907700cd40d2fb28b14369c..c86645b4587b5ad9f2a0b23cfc1521163f0dcfca 100644
--- a/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
+++ b/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
@@ -57,12 +57,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
, m_textDecorationStyle(RenderStyle::initialTextDecorationStyle())
, m_wrapFlow(RenderStyle::initialWrapFlow())
, m_wrapThrough(RenderStyle::initialWrapThrough())
- , m_hasCurrentOpacityAnimation(false)
- , m_hasCurrentTransformAnimation(false)
- , m_hasCurrentFilterAnimation(false)
- , m_runningOpacityAnimationOnCompositor(false)
- , m_runningTransformAnimationOnCompositor(false)
- , m_runningFilterAnimationOnCompositor(false)
, m_hasAspectRatio(false)
, m_touchAction(RenderStyle::initialTouchAction())
, m_objectFit(RenderStyle::initialObjectFit())
@@ -115,12 +109,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
, m_textDecorationStyle(o.m_textDecorationStyle)
, m_wrapFlow(o.m_wrapFlow)
, m_wrapThrough(o.m_wrapThrough)
- , m_hasCurrentOpacityAnimation(o.m_hasCurrentOpacityAnimation)
- , m_hasCurrentTransformAnimation(o.m_hasCurrentTransformAnimation)
- , m_hasCurrentFilterAnimation(o.m_hasCurrentFilterAnimation)
- , m_runningOpacityAnimationOnCompositor(o.m_runningOpacityAnimationOnCompositor)
- , m_runningTransformAnimationOnCompositor(o.m_runningTransformAnimationOnCompositor)
- , m_runningFilterAnimationOnCompositor(o.m_runningFilterAnimationOnCompositor)
, m_hasAspectRatio(o.m_hasAspectRatio)
, m_touchAction(o.m_touchAction)
, m_objectFit(o.m_objectFit)
@@ -176,9 +164,6 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
&& m_textDecorationStyle == o.m_textDecorationStyle
&& m_wrapFlow == o.m_wrapFlow
&& m_wrapThrough == o.m_wrapThrough
- && m_hasCurrentOpacityAnimation == o.m_hasCurrentOpacityAnimation
- && m_hasCurrentTransformAnimation == o.m_hasCurrentTransformAnimation
- && m_hasCurrentFilterAnimation == o.m_hasCurrentFilterAnimation
&& m_hasAspectRatio == o.m_hasAspectRatio
&& m_touchAction == o.m_touchAction
&& m_objectFit == o.m_objectFit
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareNonInheritedData.h ('k') | sky/examples/animation/basic.sky » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698