| 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;
|
|
|