OLD | NEW |
1 /* | 1 /* |
2 Copyright (C) 2000 Simon Hausmann <hausmann@kde.org> | 2 Copyright (C) 2000 Simon Hausmann <hausmann@kde.org> |
3 Copyright (C) 2006 Apple Computer, Inc. | 3 Copyright (C) 2006 Apple Computer, Inc. |
4 | 4 |
5 This library is free software; you can redistribute it and/or | 5 This library is free software; you can redistribute it and/or |
6 modify it under the terms of the GNU Library General Public | 6 modify it under the terms of the GNU Library General Public |
7 License as published by the Free Software Foundation; either | 7 License as published by the Free Software Foundation; either |
8 version 2 of the License, or (at your option) any later version. | 8 version 2 of the License, or (at your option) any later version. |
9 | 9 |
10 This library is distributed in the hope that it will be useful, | 10 This library is distributed in the hope that it will be useful, |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 Library General Public License for more details. | 13 Library General Public License for more details. |
14 | 14 |
15 You should have received a copy of the GNU Library General Public License | 15 You should have received a copy of the GNU Library General Public License |
16 along with this library; see the file COPYING.LIB. If not, write to | 16 along with this library; see the file COPYING.LIB. If not, write to |
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 Boston, MA 02110-1301, USA. | 18 Boston, MA 02110-1301, USA. |
19 */ | 19 */ |
20 | 20 |
21 #ifndef EventWithHitTestResults_h | 21 #ifndef EventWithHitTestResults_h |
22 #define EventWithHitTestResults_h | 22 #define EventWithHitTestResults_h |
23 | 23 |
24 #include "core/layout/HitTestResult.h" | 24 #include "core/layout/HitTestResult.h" |
25 #include "platform/PlatformEvent.h" | |
26 #include "public/platform/WebGestureEvent.h" | 25 #include "public/platform/WebGestureEvent.h" |
27 #include "public/platform/WebMouseEvent.h" | 26 #include "public/platform/WebMouseEvent.h" |
28 | 27 |
29 namespace blink { | 28 namespace blink { |
30 | 29 |
31 class Scrollbar; | 30 class Scrollbar; |
32 | 31 |
33 template <typename EventType> | 32 template <typename EventType> |
34 class EventWithHitTestResults { | 33 class EventWithHitTestResults { |
35 STACK_ALLOCATED(); | 34 STACK_ALLOCATED(); |
(...skipping 19 matching lines...) Expand all Loading... |
55 HitTestResult m_hitTestResult; | 54 HitTestResult m_hitTestResult; |
56 }; | 55 }; |
57 | 56 |
58 using MouseEventWithHitTestResults = EventWithHitTestResults<WebMouseEvent>; | 57 using MouseEventWithHitTestResults = EventWithHitTestResults<WebMouseEvent>; |
59 | 58 |
60 using GestureEventWithHitTestResults = EventWithHitTestResults<WebGestureEvent>; | 59 using GestureEventWithHitTestResults = EventWithHitTestResults<WebGestureEvent>; |
61 | 60 |
62 } // namespace blink | 61 } // namespace blink |
63 | 62 |
64 #endif // EventWithHitTestResults_h | 63 #endif // EventWithHitTestResults_h |
OLD | NEW |