| 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" // TODO(sashab): Remove this. |
| 9 #include "core/frame/FrameHost.h" // TODO(sashab): Remove this. | |
| 10 #include "core/page/Page.h" | 9 #include "core/page/Page.h" |
| 11 #include "wtf/HashCountedSet.h" | 10 #include "wtf/HashCountedSet.h" |
| 12 | 11 |
| 13 namespace blink { | 12 namespace blink { |
| 14 | 13 |
| 15 class AddEventListenerOptions; | 14 class AddEventListenerOptions; |
| 16 class Document; | 15 class Document; |
| 17 class EventTarget; | 16 class EventTarget; |
| 18 class LocalFrame; | 17 class LocalFrame; |
| 19 | 18 |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 | 120 |
| 122 void checkConsistency(EventHandlerClass) const; | 121 void checkConsistency(EventHandlerClass) const; |
| 123 | 122 |
| 124 Member<Page> m_page; | 123 Member<Page> m_page; |
| 125 EventTargetSet m_targets[EventHandlerClassCount]; | 124 EventTargetSet m_targets[EventHandlerClassCount]; |
| 126 }; | 125 }; |
| 127 | 126 |
| 128 } // namespace blink | 127 } // namespace blink |
| 129 | 128 |
| 130 #endif // EventHandlerRegistry_h | 129 #endif // EventHandlerRegistry_h |
| OLD | NEW |