| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index a2a6140b66c170462c9ccfddad142ad09156ada7..dd9a356e36cfb9647de894ffde8ac08329e73d43 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -29,6 +29,7 @@
|
| #define Document_h
|
|
|
| #include "bindings/v8/ScriptValue.h"
|
| +#include "core/animation/css/CSSPendingAnimations.h"
|
| #include "core/dom/ContainerNode.h"
|
| #include "core/dom/DOMTimeStamp.h"
|
| #include "core/dom/DocumentInit.h"
|
| @@ -989,6 +990,7 @@ public:
|
| AnimationClock& animationClock() { return *m_animationClock; }
|
| DocumentTimeline* timeline() const { return m_timeline.get(); }
|
| DocumentTimeline* transitionTimeline() const { return m_transitionTimeline.get(); }
|
| + CSSPendingAnimations& cssPendingAnimations() { return m_cssPendingAnimations; }
|
|
|
| void addToTopLayer(Element*, const Element* before = 0);
|
| void removeFromTopLayer(Element*);
|
| @@ -1322,6 +1324,7 @@ private:
|
| OwnPtr<AnimationClock> m_animationClock;
|
| RefPtr<DocumentTimeline> m_timeline;
|
| RefPtr<DocumentTimeline> m_transitionTimeline;
|
| + CSSPendingAnimations m_cssPendingAnimations;
|
|
|
| RefPtr<Document> m_templateDocument;
|
| Document* m_templateDocumentHost; // Manually managed weakref (backpointer from m_templateDocument).
|
|
|