Commit 13929c89 authored by timloh@chromium.org's avatar timloh@chromium.org

Remove unused RenderStyle::clear{Transitions,Animations}

Review URL: https://codereview.chromium.org/727093002

git-svn-id: svn://svn.chromium.org/blink/trunk@185406 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent aa13c470
...@@ -1361,16 +1361,6 @@ public: ...@@ -1361,16 +1361,6 @@ public:
// Apple-specific property setters // Apple-specific property setters
void setPointerEvents(EPointerEvents p) { inherited_flags._pointerEvents = p; } void setPointerEvents(EPointerEvents p) { inherited_flags._pointerEvents = p; }
void clearAnimations()
{
rareNonInheritedData.access()->m_animations.clear();
}
void clearTransitions()
{
rareNonInheritedData.access()->m_transitions.clear();
}
void setTransformStyle3D(ETransformStyle3D b) { SET_VAR(rareNonInheritedData, m_transformStyle3D, b); } void setTransformStyle3D(ETransformStyle3D b) { SET_VAR(rareNonInheritedData, m_transformStyle3D, b); }
void setBackfaceVisibility(EBackfaceVisibility b) { SET_VAR(rareNonInheritedData, m_backfaceVisibility, b); } void setBackfaceVisibility(EBackfaceVisibility b) { SET_VAR(rareNonInheritedData, m_backfaceVisibility, b); }
void setPerspective(float p) { SET_VAR(rareNonInheritedData, m_perspective, p); } void setPerspective(float p) { SET_VAR(rareNonInheritedData, m_perspective, p); }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment