| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All Rights Reserved. | 2 * Copyright (C) 2010 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 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 #include "core/events/EventQueue.h" | 30 #include "core/events/EventQueue.h" |
| 31 #include "wtf/HashMap.h" | 31 #include "wtf/HashMap.h" |
| 32 #include "wtf/HashSet.h" | 32 #include "wtf/HashSet.h" |
| 33 #include "wtf/PassOwnPtr.h" | 33 #include "wtf/PassOwnPtr.h" |
| 34 #include "wtf/RefCounted.h" | 34 #include "wtf/RefCounted.h" |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 class Event; | 38 class Event; |
| 39 class Node; | |
| 40 class ExecutionContext; | 39 class ExecutionContext; |
| 41 | 40 |
| 42 class WorkerEventQueue final : public EventQueue { | 41 class WorkerEventQueue final : public EventQueue { |
| 43 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; | 42 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; |
| 44 public: | 43 public: |
| 45 | 44 |
| 46 static PassOwnPtrWillBeRawPtr<WorkerEventQueue> create(ExecutionContext*); | 45 static PassOwnPtrWillBeRawPtr<WorkerEventQueue> create(ExecutionContext*); |
| 47 virtual ~WorkerEventQueue(); | 46 virtual ~WorkerEventQueue(); |
| 48 void trace(Visitor*); | 47 void trace(Visitor*); |
| 49 | 48 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 60 bool m_isClosed; | 59 bool m_isClosed; |
| 61 | 60 |
| 62 class EventDispatcherTask; | 61 class EventDispatcherTask; |
| 63 using EventTaskMap = WillBeHeapHashMap<RefPtrWillBeMember<Event>, EventDispa
tcherTask*>; | 62 using EventTaskMap = WillBeHeapHashMap<RefPtrWillBeMember<Event>, EventDispa
tcherTask*>; |
| 64 EventTaskMap m_eventTaskMap; | 63 EventTaskMap m_eventTaskMap; |
| 65 }; | 64 }; |
| 66 | 65 |
| 67 } | 66 } |
| 68 | 67 |
| 69 #endif // WorkerEventQueue_h | 68 #endif // WorkerEventQueue_h |
| OLD | NEW |