| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All Rights Reserved. | 2 * Copyright (C) 2011 Google Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 23 * | 23 * |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef ScriptedAnimationController_h | 26 #ifndef ScriptedAnimationController_h |
| 27 #define ScriptedAnimationController_h | 27 #define ScriptedAnimationController_h |
| 28 | 28 |
| 29 #include "core/dom/FrameRequestCallbackCollection.h" | 29 #include "core/dom/FrameRequestCallbackCollection.h" |
| 30 #include "platform/heap/Handle.h" | 30 #include "platform/heap/Handle.h" |
| 31 #include "wtf/ListHashSet.h" | 31 #include "wtf/ListHashSet.h" |
| 32 #include "wtf/RefCounted.h" | |
| 33 #include "wtf/RefPtr.h" | |
| 34 #include "wtf/Vector.h" | 32 #include "wtf/Vector.h" |
| 35 #include "wtf/text/AtomicString.h" | 33 #include "wtf/text/AtomicString.h" |
| 36 #include "wtf/text/StringImpl.h" | 34 #include "wtf/text/StringImpl.h" |
| 37 | 35 |
| 38 namespace blink { | 36 namespace blink { |
| 39 | 37 |
| 40 class Document; | 38 class Document; |
| 41 class Event; | 39 class Event; |
| 42 class EventTarget; | 40 class EventTarget; |
| 43 class FrameRequestCallback; | 41 class FrameRequestCallback; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 int m_suspendCount; | 81 int m_suspendCount; |
| 84 HeapVector<Member<Event>> m_eventQueue; | 82 HeapVector<Member<Event>> m_eventQueue; |
| 85 HeapListHashSet<std::pair<Member<const EventTarget>, const StringImpl*>> m_p
erFrameEvents; | 83 HeapListHashSet<std::pair<Member<const EventTarget>, const StringImpl*>> m_p
erFrameEvents; |
| 86 using MediaQueryListListeners = HeapListHashSet<Member<MediaQueryListListene
r>>; | 84 using MediaQueryListListeners = HeapListHashSet<Member<MediaQueryListListene
r>>; |
| 87 MediaQueryListListeners m_mediaQueryListListeners; | 85 MediaQueryListListeners m_mediaQueryListListeners; |
| 88 }; | 86 }; |
| 89 | 87 |
| 90 } // namespace blink | 88 } // namespace blink |
| 91 | 89 |
| 92 #endif // ScriptedAnimationController_h | 90 #endif // ScriptedAnimationController_h |
| OLD | NEW |