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 GestureManager_h | 5 #ifndef GestureManager_h |
6 #define GestureManager_h | 6 #define GestureManager_h |
7 | 7 |
8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
9 #include "core/frame/LocalFrame.h" | 9 #include "core/frame/LocalFrame.h" |
10 #include "core/layout/HitTestRequest.h" | 10 #include "core/layout/HitTestRequest.h" |
11 #include "core/page/EventWithHitTestResults.h" | 11 #include "core/page/EventWithHitTestResults.h" |
12 #include "platform/PlatformEvent.h" | |
13 #include "public/platform/WebInputEventResult.h" | 12 #include "public/platform/WebInputEventResult.h" |
13 #include "wtf/Time.h" | |
bokan
2017/02/02 20:33:18
Why is this needed? If it's for the cpp file, incl
dtapuska
2017/02/14 15:53:09
GestureManager has TimeTicks as a variable (m_last
| |
14 | 14 |
15 namespace blink { | 15 namespace blink { |
16 | 16 |
17 class ScrollManager; | 17 class ScrollManager; |
18 class SelectionController; | 18 class SelectionController; |
19 class PointerEventManager; | 19 class PointerEventManager; |
20 class MouseEventManager; | 20 class MouseEventManager; |
21 | 21 |
22 // This class takes care of gestures and delegating the action based on the | 22 // This class takes care of gestures and delegating the action based on the |
23 // gesture to the responsible class. | 23 // gesture to the responsible class. |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
79 bool m_longTapShouldInvokeContextMenu; | 79 bool m_longTapShouldInvokeContextMenu; |
80 | 80 |
81 const Member<SelectionController> m_selectionController; | 81 const Member<SelectionController> m_selectionController; |
82 | 82 |
83 TimeTicks m_lastShowPressTimestamp; | 83 TimeTicks m_lastShowPressTimestamp; |
84 }; | 84 }; |
85 | 85 |
86 } // namespace blink | 86 } // namespace blink |
87 | 87 |
88 #endif // GestureManager_h | 88 #endif // GestureManager_h |
OLD | NEW |