| Index: Source/core/dom/ScriptedAnimationController.h
|
| diff --git a/Source/core/dom/ScriptedAnimationController.h b/Source/core/dom/ScriptedAnimationController.h
|
| index 751deee8f0b02a6e2a01e9a84fad8d8244b3726d..c148a2f77cbbd86feffb97416d03434abec31515 100644
|
| --- a/Source/core/dom/ScriptedAnimationController.h
|
| +++ b/Source/core/dom/ScriptedAnimationController.h
|
| @@ -38,7 +38,6 @@
|
| class Document;
|
| class Event;
|
| class EventTarget;
|
| -class MediaQueryListListener;
|
| class RequestAnimationFrameCallback;
|
|
|
| class ScriptedAnimationController : public RefCountedWillBeGarbageCollectedFinalized<ScriptedAnimationController> {
|
| @@ -59,7 +58,6 @@
|
|
|
| void enqueueEvent(PassRefPtrWillBeRawPtr<Event>);
|
| void enqueuePerFrameEvent(PassRefPtrWillBeRawPtr<Event>);
|
| - void enqueueMediaQueryChangeListeners(WillBeHeapVector<RefPtrWillBeMember<MediaQueryListListener> >&);
|
|
|
| void suspend();
|
| void resume();
|
| @@ -71,7 +69,6 @@
|
|
|
| void dispatchEvents();
|
| void executeCallbacks(double monotonicTimeNow);
|
| - void callMediaQueryListListeners();
|
|
|
| typedef Vector<OwnPtr<RequestAnimationFrameCallback> > CallbackList;
|
| CallbackList m_callbacks;
|
| @@ -82,8 +79,6 @@
|
| int m_suspendCount;
|
| WillBeHeapVector<RefPtrWillBeMember<Event> > m_eventQueue;
|
| WillBeHeapListHashSet<std::pair<RawPtrWillBeMember<const EventTarget>, const StringImpl*> > m_perFrameEvents;
|
| - typedef WillBeHeapListHashSet<RefPtrWillBeMember<MediaQueryListListener> > MediaQueryListListeners;
|
| - MediaQueryListListeners m_mediaQueryListListeners;
|
| };
|
|
|
| }
|
|
|