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

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

Issue 1229273004: Remove Animations and Transitions. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 5 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: sky/engine/core/rendering/style/StyleRareNonInheritedData.h
diff --git a/sky/engine/core/rendering/style/StyleRareNonInheritedData.h b/sky/engine/core/rendering/style/StyleRareNonInheritedData.h
index 02bd058c5b2edc358c35db66d103a4e18b7510c6..209fdf1108807bbdef712e8995e8b572221863f6 100644
--- a/sky/engine/core/rendering/style/StyleRareNonInheritedData.h
+++ b/sky/engine/core/rendering/style/StyleRareNonInheritedData.h
@@ -41,14 +41,11 @@
namespace blink {
-class CSSAnimationData;
-class CSSTransitionData;
class LengthSize;
class ShadowList;
class StyleFilterData;
class StyleFlexibleBoxData;
class StyleTransformData;
-class StyleWillChangeData;
// This struct is for rarely used non-inherited CSS3, CSS2, and WebKit-specific properties.
// By grouping them together, we save space, and only allocate this object when someone
@@ -64,8 +61,6 @@ public:
bool counterDataEquivalent(const StyleRareNonInheritedData&) const;
bool shadowDataEquivalent(const StyleRareNonInheritedData&) const;
- bool animationDataEquivalent(const StyleRareNonInheritedData&) const;
- bool transitionDataEquivalent(const StyleRareNonInheritedData&) const;
bool hasFilters() const;
bool hasOpacity() const { return opacity < 1; }
@@ -80,7 +75,6 @@ public:
DataRef<StyleFlexibleBoxData> m_flexibleBox;
DataRef<StyleTransformData> m_transform; // Transform properties (rotate, scale, skew, etc.)
- DataRef<StyleWillChangeData> m_willChange; // CSS Will Change
DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, etc.)
@@ -88,9 +82,6 @@ public:
RefPtr<ShadowList> m_boxShadow;
- OwnPtr<CSSAnimationData> m_animations;
- OwnPtr<CSSTransitionData> m_transitions;
-
RefPtr<ClipPathOperation> m_clipPath;
StyleColor m_textDecorationColor;
« no previous file with comments | « sky/engine/core/rendering/style/RenderStyle.cpp ('k') | sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698