| 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 10 matching lines...) Expand all Loading... |
| 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 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 "core/page/EventHandler.h" | 29 #include "core/page/EventHandler.h" |
| 30 | 30 |
| 31 #include "HTMLNames.h" | |
| 32 #include "RuntimeEnabledFeatures.h" | |
| 33 #include "SVGNames.h" | |
| 34 #include "bindings/v8/ExceptionStatePlaceholder.h" | 31 #include "bindings/v8/ExceptionStatePlaceholder.h" |
| 32 #include "core/HTMLNames.h" |
| 33 #include "core/SVGNames.h" |
| 35 #include "core/clipboard/Clipboard.h" | 34 #include "core/clipboard/Clipboard.h" |
| 36 #include "core/clipboard/DataObject.h" | 35 #include "core/clipboard/DataObject.h" |
| 37 #include "core/dom/Document.h" | 36 #include "core/dom/Document.h" |
| 38 #include "core/dom/DocumentMarkerController.h" | 37 #include "core/dom/DocumentMarkerController.h" |
| 39 #include "core/dom/FullscreenElementStack.h" | 38 #include "core/dom/FullscreenElementStack.h" |
| 40 #include "core/dom/NodeRenderingTraversal.h" | 39 #include "core/dom/NodeRenderingTraversal.h" |
| 41 #include "core/dom/TouchList.h" | 40 #include "core/dom/TouchList.h" |
| 42 #include "core/dom/shadow/ShadowRoot.h" | 41 #include "core/dom/shadow/ShadowRoot.h" |
| 43 #include "core/editing/Editor.h" | 42 #include "core/editing/Editor.h" |
| 44 #include "core/editing/FrameSelection.h" | 43 #include "core/editing/FrameSelection.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 #include "core/rendering/RenderTextControlSingleLine.h" | 81 #include "core/rendering/RenderTextControlSingleLine.h" |
| 83 #include "core/rendering/RenderView.h" | 82 #include "core/rendering/RenderView.h" |
| 84 #include "core/rendering/RenderWidget.h" | 83 #include "core/rendering/RenderWidget.h" |
| 85 #include "core/rendering/style/RenderStyle.h" | 84 #include "core/rendering/style/RenderStyle.h" |
| 86 #include "core/svg/SVGDocumentExtensions.h" | 85 #include "core/svg/SVGDocumentExtensions.h" |
| 87 #include "core/svg/SVGUseElement.h" | 86 #include "core/svg/SVGUseElement.h" |
| 88 #include "platform/PlatformGestureEvent.h" | 87 #include "platform/PlatformGestureEvent.h" |
| 89 #include "platform/PlatformKeyboardEvent.h" | 88 #include "platform/PlatformKeyboardEvent.h" |
| 90 #include "platform/PlatformTouchEvent.h" | 89 #include "platform/PlatformTouchEvent.h" |
| 91 #include "platform/PlatformWheelEvent.h" | 90 #include "platform/PlatformWheelEvent.h" |
| 91 #include "platform/RuntimeEnabledFeatures.h" |
| 92 #include "platform/TraceEvent.h" | 92 #include "platform/TraceEvent.h" |
| 93 #include "platform/WindowsKeyboardCodes.h" | 93 #include "platform/WindowsKeyboardCodes.h" |
| 94 #include "platform/geometry/FloatPoint.h" | 94 #include "platform/geometry/FloatPoint.h" |
| 95 #include "platform/graphics/Image.h" | 95 #include "platform/graphics/Image.h" |
| 96 #include "platform/heap/Handle.h" | 96 #include "platform/heap/Handle.h" |
| 97 #include "platform/scroll/ScrollAnimator.h" | 97 #include "platform/scroll/ScrollAnimator.h" |
| 98 #include "platform/scroll/Scrollbar.h" | 98 #include "platform/scroll/Scrollbar.h" |
| 99 #include "wtf/Assertions.h" | 99 #include "wtf/Assertions.h" |
| 100 #include "wtf/CurrentTime.h" | 100 #include "wtf/CurrentTime.h" |
| 101 #include "wtf/StdLibExtras.h" | 101 #include "wtf/StdLibExtras.h" |
| (...skipping 3662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3764 unsigned EventHandler::accessKeyModifiers() | 3764 unsigned EventHandler::accessKeyModifiers() |
| 3765 { | 3765 { |
| 3766 #if OS(MACOSX) | 3766 #if OS(MACOSX) |
| 3767 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 3767 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
| 3768 #else | 3768 #else |
| 3769 return PlatformEvent::AltKey; | 3769 return PlatformEvent::AltKey; |
| 3770 #endif | 3770 #endif |
| 3771 } | 3771 } |
| 3772 | 3772 |
| 3773 } // namespace WebCore | 3773 } // namespace WebCore |
| OLD | NEW |