OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 17 matching lines...) Expand all Loading... |
28 | 28 |
29 #include "core/events/TextEventInputType.h" | 29 #include "core/events/TextEventInputType.h" |
30 #include "core/dom/UserGestureIndicator.h" | 30 #include "core/dom/UserGestureIndicator.h" |
31 #include "core/editing/TextGranularity.h" | 31 #include "core/editing/TextGranularity.h" |
32 #include "core/page/DragActions.h" | 32 #include "core/page/DragActions.h" |
33 #include "core/page/FocusDirection.h" | 33 #include "core/page/FocusDirection.h" |
34 #include "core/platform/Cursor.h" | 34 #include "core/platform/Cursor.h" |
35 #include "core/platform/PlatformMouseEvent.h" | 35 #include "core/platform/PlatformMouseEvent.h" |
36 #include "core/platform/ScrollTypes.h" | 36 #include "core/platform/ScrollTypes.h" |
37 #include "core/platform/Timer.h" | 37 #include "core/platform/Timer.h" |
38 #include "core/platform/graphics/LayoutPoint.h" | |
39 #include "core/rendering/HitTestRequest.h" | 38 #include "core/rendering/HitTestRequest.h" |
| 39 #include "platform/geometry/LayoutPoint.h" |
40 #include "wtf/Forward.h" | 40 #include "wtf/Forward.h" |
41 #include "wtf/HashMap.h" | 41 #include "wtf/HashMap.h" |
42 #include "wtf/RefPtr.h" | 42 #include "wtf/RefPtr.h" |
43 | 43 |
44 namespace WebCore { | 44 namespace WebCore { |
45 | 45 |
46 class Clipboard; | 46 class Clipboard; |
47 class Document; | 47 class Document; |
48 class Element; | 48 class Element; |
49 class Event; | 49 class Event; |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 double m_maxMouseMovedDuration; | 379 double m_maxMouseMovedDuration; |
380 PlatformEvent::Type m_baseEventType; | 380 PlatformEvent::Type m_baseEventType; |
381 bool m_didStartDrag; | 381 bool m_didStartDrag; |
382 | 382 |
383 bool m_longTapShouldInvokeContextMenu; | 383 bool m_longTapShouldInvokeContextMenu; |
384 }; | 384 }; |
385 | 385 |
386 } // namespace WebCore | 386 } // namespace WebCore |
387 | 387 |
388 #endif // EventHandler_h | 388 #endif // EventHandler_h |
OLD | NEW |