| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef EventHandlerRegistry_h | 5 #ifndef EventHandlerRegistry_h |
| 6 #define EventHandlerRegistry_h | 6 #define EventHandlerRegistry_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/frame/FrameHost.h" | 9 #include "core/frame/FrameHost.h" |
| 10 #include "wtf/HashCountedSet.h" | 10 #include "wtf/HashCountedSet.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class Document; | 14 class Document; |
| 15 class EventTarget; | 15 class EventTarget; |
| 16 | 16 |
| 17 typedef HashCountedSet<EventTarget*> EventTargetSet; | 17 typedef HashCountedSet<EventTarget*> EventTargetSet; |
| 18 | 18 |
| 19 // Registry for keeping track of event handlers. Note that only handlers on | 19 // Registry for keeping track of event handlers. Note that only handlers on |
| 20 // documents that can be rendered or can receive input (i.e., are attached to a | 20 // documents that can be rendered or can receive input (i.e., are attached to a |
| 21 // FrameHost) are registered here. | 21 // FrameHost) are registered here. |
| 22 class CORE_EXPORT EventHandlerRegistry final : public NoBaseWillBeGarbageCollect
edFinalized<EventHandlerRegistry> { | 22 class CORE_EXPORT EventHandlerRegistry final : public NoBaseWillBeGarbageCollect
edFinalized<EventHandlerRegistry> { |
| 23 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(EventHandlerRegistry); |
| 23 public: | 24 public: |
| 24 explicit EventHandlerRegistry(FrameHost&); | 25 explicit EventHandlerRegistry(FrameHost&); |
| 25 virtual ~EventHandlerRegistry(); | 26 virtual ~EventHandlerRegistry(); |
| 26 | 27 |
| 27 // Supported event handler classes. Note that each one may correspond to | 28 // Supported event handler classes. Note that each one may correspond to |
| 28 // multiple event types. | 29 // multiple event types. |
| 29 enum EventHandlerClass { | 30 enum EventHandlerClass { |
| 30 ScrollEvent, | 31 ScrollEvent, |
| 31 WheelEvent, | 32 WheelEvent, |
| 32 TouchEvent, | 33 TouchEvent, |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 99 |
| 99 void checkConsistency() const; | 100 void checkConsistency() const; |
| 100 | 101 |
| 101 RawPtrWillBeMember<FrameHost> m_frameHost; | 102 RawPtrWillBeMember<FrameHost> m_frameHost; |
| 102 EventTargetSet m_targets[EventHandlerClassCount]; | 103 EventTargetSet m_targets[EventHandlerClassCount]; |
| 103 }; | 104 }; |
| 104 | 105 |
| 105 } // namespace blink | 106 } // namespace blink |
| 106 | 107 |
| 107 #endif // EventHandlerRegistry_h | 108 #endif // EventHandlerRegistry_h |
| OLD | NEW |