| 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 11 matching lines...) Expand all Loading... |
| 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "config.h" | 28 #include "config.h" |
| 29 #include "EventHandler.h" | 29 #include "EventHandler.h" |
| 30 | 30 |
| 31 #include "AutoscrollController.h" | 31 #include "AutoscrollController.h" |
| 32 #include "CachedImage.h" | |
| 33 #include "Chrome.h" | 32 #include "Chrome.h" |
| 34 #include "ChromeClient.h" | 33 #include "ChromeClient.h" |
| 35 #include "Document.h" | 34 #include "Document.h" |
| 36 #include "DocumentEventQueue.h" | 35 #include "DocumentEventQueue.h" |
| 37 #include "DragController.h" | 36 #include "DragController.h" |
| 38 #include "DragState.h" | 37 #include "DragState.h" |
| 39 #include "Editor.h" | 38 #include "Editor.h" |
| 40 #include "EditorClient.h" | 39 #include "EditorClient.h" |
| 41 #include "EventNames.h" | 40 #include "EventNames.h" |
| 42 #include "EventPathWalker.h" | 41 #include "EventPathWalker.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 62 #include "StaticHashSetNodeList.h" | 61 #include "StaticHashSetNodeList.h" |
| 63 #include "TextEvent.h" | 62 #include "TextEvent.h" |
| 64 #include "TextIterator.h" | 63 #include "TextIterator.h" |
| 65 #include "TouchAdjustment.h" | 64 #include "TouchAdjustment.h" |
| 66 #include "TouchEvent.h" | 65 #include "TouchEvent.h" |
| 67 #include "TouchList.h" | 66 #include "TouchList.h" |
| 68 #include "UserTypingGestureIndicator.h" | 67 #include "UserTypingGestureIndicator.h" |
| 69 #include "WheelEvent.h" | 68 #include "WheelEvent.h" |
| 70 #include "core/accessibility/AXObjectCache.h" | 69 #include "core/accessibility/AXObjectCache.h" |
| 71 #include "core/loader/FrameLoader.h" | 70 #include "core/loader/FrameLoader.h" |
| 71 #include "core/loader/cache/CachedImage.h" |
| 72 #include "core/platform/Cursor.h" | 72 #include "core/platform/Cursor.h" |
| 73 #include "core/platform/NotImplemented.h" | 73 #include "core/platform/NotImplemented.h" |
| 74 #include "core/platform/PlatformEvent.h" | 74 #include "core/platform/PlatformEvent.h" |
| 75 #include "core/platform/PlatformGestureEvent.h" | 75 #include "core/platform/PlatformGestureEvent.h" |
| 76 #include "core/platform/PlatformKeyboardEvent.h" | 76 #include "core/platform/PlatformKeyboardEvent.h" |
| 77 #include "core/platform/PlatformTouchEvent.h" | 77 #include "core/platform/PlatformTouchEvent.h" |
| 78 #include "core/platform/PlatformWheelEvent.h" | 78 #include "core/platform/PlatformWheelEvent.h" |
| 79 #include "core/platform/ScrollAnimator.h" | 79 #include "core/platform/ScrollAnimator.h" |
| 80 #include "core/platform/Scrollbar.h" | 80 #include "core/platform/Scrollbar.h" |
| 81 #include "core/platform/WindowsKeyboardCodes.h" | 81 #include "core/platform/WindowsKeyboardCodes.h" |
| (...skipping 3891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3973 unsigned EventHandler::accessKeyModifiers() | 3973 unsigned EventHandler::accessKeyModifiers() |
| 3974 { | 3974 { |
| 3975 #if OS(DARWIN) | 3975 #if OS(DARWIN) |
| 3976 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 3976 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
| 3977 #else | 3977 #else |
| 3978 return PlatformEvent::AltKey; | 3978 return PlatformEvent::AltKey; |
| 3979 #endif | 3979 #endif |
| 3980 } | 3980 } |
| 3981 | 3981 |
| 3982 } // namespace WebCore | 3982 } // namespace WebCore |
| OLD | NEW |