diff options
Diffstat (limited to 'WebCore/page/animation')
-rw-r--r-- | WebCore/page/animation/AnimationBase.cpp | 2 | ||||
-rw-r--r-- | WebCore/page/animation/AnimationBase.h | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/WebCore/page/animation/AnimationBase.cpp b/WebCore/page/animation/AnimationBase.cpp index a49c754..6ab56e9 100644 --- a/WebCore/page/animation/AnimationBase.cpp +++ b/WebCore/page/animation/AnimationBase.cpp @@ -562,7 +562,7 @@ static int gPropertyWrapperMap[numCSSProperties]; static const int cInvalidPropertyWrapperIndex = -1; -static void ensurePropertyMap() +void AnimationBase::ensurePropertyMap() { // FIXME: This data is never destroyed. Maybe we should ref count it and toss it when the last AnimationController is destroyed? if (gPropertyWrappers == 0) { diff --git a/WebCore/page/animation/AnimationBase.h b/WebCore/page/animation/AnimationBase.h index a957119..ac55a2b 100644 --- a/WebCore/page/animation/AnimationBase.h +++ b/WebCore/page/animation/AnimationBase.h @@ -225,6 +225,9 @@ protected: double m_totalDuration, m_nextIterationDuration; AnimationBase* m_next; + +private: + static void ensurePropertyMap(); }; } // namespace WebCore |