OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. |
3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 3 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies) | 4 * Copyright (C) 2012 Digia Plc. and/or its subsidiary(-ies) |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 #include "core/platform/Cursor.h" | 74 #include "core/platform/Cursor.h" |
75 #include "core/platform/PlatformEvent.h" | 75 #include "core/platform/PlatformEvent.h" |
76 #include "core/platform/PlatformGestureEvent.h" | 76 #include "core/platform/PlatformGestureEvent.h" |
77 #include "core/platform/PlatformKeyboardEvent.h" | 77 #include "core/platform/PlatformKeyboardEvent.h" |
78 #include "core/platform/PlatformTouchEvent.h" | 78 #include "core/platform/PlatformTouchEvent.h" |
79 #include "core/platform/PlatformWheelEvent.h" | 79 #include "core/platform/PlatformWheelEvent.h" |
80 #include "core/platform/ScrollAnimator.h" | 80 #include "core/platform/ScrollAnimator.h" |
81 #include "core/platform/Scrollbar.h" | 81 #include "core/platform/Scrollbar.h" |
82 #include "core/platform/WindowsKeyboardCodes.h" | 82 #include "core/platform/WindowsKeyboardCodes.h" |
83 #include "core/platform/chromium/ChromiumDataObject.h" | 83 #include "core/platform/chromium/ChromiumDataObject.h" |
84 #include "core/platform/graphics/FloatPoint.h" | |
85 #include "core/platform/graphics/Image.h" | 84 #include "core/platform/graphics/Image.h" |
86 #include "core/rendering/HitTestRequest.h" | 85 #include "core/rendering/HitTestRequest.h" |
87 #include "core/rendering/HitTestResult.h" | 86 #include "core/rendering/HitTestResult.h" |
88 #include "core/rendering/RenderLayer.h" | 87 #include "core/rendering/RenderLayer.h" |
89 #include "core/rendering/RenderTextControlSingleLine.h" | 88 #include "core/rendering/RenderTextControlSingleLine.h" |
90 #include "core/rendering/RenderView.h" | 89 #include "core/rendering/RenderView.h" |
91 #include "core/rendering/RenderWidget.h" | 90 #include "core/rendering/RenderWidget.h" |
92 #include "core/rendering/style/CursorList.h" | 91 #include "core/rendering/style/CursorList.h" |
93 #include "core/svg/SVGDocument.h" | 92 #include "core/svg/SVGDocument.h" |
94 #include "core/svg/SVGElementInstance.h" | 93 #include "core/svg/SVGElementInstance.h" |
95 #include "core/svg/SVGUseElement.h" | 94 #include "core/svg/SVGUseElement.h" |
| 95 #include "platform/geometry/FloatPoint.h" |
96 #include "wtf/Assertions.h" | 96 #include "wtf/Assertions.h" |
97 #include "wtf/CurrentTime.h" | 97 #include "wtf/CurrentTime.h" |
98 #include "wtf/StdLibExtras.h" | 98 #include "wtf/StdLibExtras.h" |
99 #include "wtf/TemporaryChange.h" | 99 #include "wtf/TemporaryChange.h" |
100 | 100 |
101 namespace WebCore { | 101 namespace WebCore { |
102 | 102 |
103 using namespace HTMLNames; | 103 using namespace HTMLNames; |
104 | 104 |
105 // The link drag hysteresis is much larger than the others because there | 105 // The link drag hysteresis is much larger than the others because there |
(...skipping 3731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3837 unsigned EventHandler::accessKeyModifiers() | 3837 unsigned EventHandler::accessKeyModifiers() |
3838 { | 3838 { |
3839 #if OS(MACOSX) | 3839 #if OS(MACOSX) |
3840 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 3840 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
3841 #else | 3841 #else |
3842 return PlatformEvent::AltKey; | 3842 return PlatformEvent::AltKey; |
3843 #endif | 3843 #endif |
3844 } | 3844 } |
3845 | 3845 |
3846 } // namespace WebCore | 3846 } // namespace WebCore |
OLD | NEW |