| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 PointerEventManager_h | 5 #ifndef PointerEventManager_h |
| 6 #define PointerEventManager_h | 6 #define PointerEventManager_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/events/PointerEvent.h" | 9 #include "core/events/PointerEvent.h" |
| 10 #include "core/events/PointerEventFactory.h" | 10 #include "core/events/PointerEventFactory.h" |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 WTF::IntHash<int>, | 214 WTF::IntHash<int>, |
| 215 WTF::UnsignedWithZeroKeyHashTraits<int>>; | 215 WTF::UnsignedWithZeroKeyHashTraits<int>>; |
| 216 NodeUnderPointerMap m_nodeUnderPointer; | 216 NodeUnderPointerMap m_nodeUnderPointer; |
| 217 | 217 |
| 218 PointerCapturingMap m_pointerCaptureTarget; | 218 PointerCapturingMap m_pointerCaptureTarget; |
| 219 PointerCapturingMap m_pendingPointerCaptureTarget; | 219 PointerCapturingMap m_pendingPointerCaptureTarget; |
| 220 | 220 |
| 221 PointerEventFactory m_pointerEventFactory; | 221 PointerEventFactory m_pointerEventFactory; |
| 222 Member<TouchEventManager> m_touchEventManager; | 222 Member<TouchEventManager> m_touchEventManager; |
| 223 Member<MouseEventManager> m_mouseEventManager; | 223 Member<MouseEventManager> m_mouseEventManager; |
| 224 |
| 225 // The pointerId of the PointerEvent currently being dispatched within this |
| 226 // frame or 0 if none. |
| 227 int m_dispatchingPointerId; |
| 224 }; | 228 }; |
| 225 | 229 |
| 226 } // namespace blink | 230 } // namespace blink |
| 227 | 231 |
| 228 #endif // PointerEventManager_h | 232 #endif // PointerEventManager_h |
| OLD | NEW |