| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index 28fea74216df36cc3579a3b75084274ba8398c37..e3b9493cecb081a9d9da0ae6b1ff821c465fa032 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -3884,6 +3884,11 @@ void Document::enqueueAnimationFrameEvent(PassRefPtrWillBeRawPtr<Event> event)
|
| ensureScriptedAnimationController().enqueueEvent(event);
|
| }
|
|
|
| +void Document::enqueueUniqueAnimationFrameEvent(PassRefPtrWillBeRawPtr<Event> event)
|
| +{
|
| + ensureScriptedAnimationController().enqueuePerFrameEvent(event);
|
| +}
|
| +
|
| void Document::enqueueScrollEventForNode(Node* target)
|
| {
|
| // Per the W3C CSSOM View Module only scroll events fired at the document should bubble.
|
| @@ -3904,7 +3909,6 @@ void Document::enqueueMediaQueryChangeListeners(WillBeHeapVector<RefPtrWillBeMem
|
| ensureScriptedAnimationController().enqueueMediaQueryChangeListeners(listeners);
|
| }
|
|
|
| -
|
| Document::EventFactorySet& Document::eventFactories()
|
| {
|
| DEFINE_STATIC_LOCAL(EventFactorySet, s_eventFactory, ());
|
|
|