| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 WTF::IntHash<int>, | 216 WTF::IntHash<int>, |
| 217 WTF::UnsignedWithZeroKeyHashTraits<int>>; | 217 WTF::UnsignedWithZeroKeyHashTraits<int>>; |
| 218 NodeUnderPointerMap m_nodeUnderPointer; | 218 NodeUnderPointerMap m_nodeUnderPointer; |
| 219 | 219 |
| 220 PointerCapturingMap m_pointerCaptureTarget; | 220 PointerCapturingMap m_pointerCaptureTarget; |
| 221 PointerCapturingMap m_pendingPointerCaptureTarget; | 221 PointerCapturingMap m_pendingPointerCaptureTarget; |
| 222 | 222 |
| 223 PointerEventFactory m_pointerEventFactory; | 223 PointerEventFactory m_pointerEventFactory; |
| 224 Member<TouchEventManager> m_touchEventManager; | 224 Member<TouchEventManager> m_touchEventManager; |
| 225 Member<MouseEventManager> m_mouseEventManager; | 225 Member<MouseEventManager> m_mouseEventManager; |
| 226 |
| 227 // The pointerId of the PointerEvent currently being dispatched within this |
| 228 // frame or 0 if none. |
| 229 int m_dispatchingPointerId; |
| 226 }; | 230 }; |
| 227 | 231 |
| 228 } // namespace blink | 232 } // namespace blink |
| 229 | 233 |
| 230 #endif // PointerEventManager_h | 234 #endif // PointerEventManager_h |
| OLD | NEW |