OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Victor Carbune (victor@rosedu.org) | 2 * Copyright (C) 2012 Victor Carbune (victor@rosedu.org) |
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 12 matching lines...) Expand all Loading... |
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 */ | 24 */ |
25 | 25 |
26 #ifndef GenericEventQueue_h | 26 #ifndef GenericEventQueue_h |
27 #define GenericEventQueue_h | 27 #define GenericEventQueue_h |
28 | 28 |
29 #include "core/CoreExport.h" | 29 #include "core/CoreExport.h" |
30 #include "core/events/EventQueue.h" | 30 #include "core/events/EventQueue.h" |
31 #include "core/events/EventTarget.h" | 31 #include "core/events/EventTarget.h" |
32 #include "platform/Timer.h" | 32 #include "platform/Timer.h" |
| 33 #include "wtf/PassOwnPtr.h" |
33 #include "wtf/RefPtr.h" | 34 #include "wtf/RefPtr.h" |
34 #include "wtf/Vector.h" | 35 #include "wtf/Vector.h" |
35 | 36 |
36 namespace blink { | 37 namespace blink { |
37 | 38 |
38 class CORE_EXPORT GenericEventQueue final : public EventQueue { | 39 class CORE_EXPORT GenericEventQueue final : public EventQueue { |
39 public: | 40 public: |
40 static GenericEventQueue* create(EventTarget*); | 41 static GenericEventQueue* create(EventTarget*); |
41 ~GenericEventQueue() override; | 42 ~GenericEventQueue() override; |
42 | 43 |
(...skipping 13 matching lines...) Expand all Loading... |
56 Member<EventTarget> m_owner; | 57 Member<EventTarget> m_owner; |
57 HeapVector<Member<Event>> m_pendingEvents; | 58 HeapVector<Member<Event>> m_pendingEvents; |
58 Timer<GenericEventQueue> m_timer; | 59 Timer<GenericEventQueue> m_timer; |
59 | 60 |
60 bool m_isClosed; | 61 bool m_isClosed; |
61 }; | 62 }; |
62 | 63 |
63 } // namespace blink | 64 } // namespace blink |
64 | 65 |
65 #endif | 66 #endif |
OLD | NEW |