| 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 14 matching lines...) Expand all Loading... |
| 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" | 31 #include "HTMLNames.h" |
| 32 #include "RuntimeEnabledFeatures.h" | 32 #include "RuntimeEnabledFeatures.h" |
| 33 #include "SVGNames.h" | 33 #include "SVGNames.h" |
| 34 #include "bindings/v8/ExceptionStatePlaceholder.h" | 34 #include "bindings/v8/ExceptionStatePlaceholder.h" |
| 35 #include "core/dom/Clipboard.h" | 35 #include "core/clipboard/Clipboard.h" |
| 36 #include "core/dom/DataObject.h" | 36 #include "core/clipboard/DataObject.h" |
| 37 #include "core/dom/Document.h" | 37 #include "core/dom/Document.h" |
| 38 #include "core/dom/DocumentMarkerController.h" | 38 #include "core/dom/DocumentMarkerController.h" |
| 39 #include "core/dom/FullscreenElementStack.h" | 39 #include "core/dom/FullscreenElementStack.h" |
| 40 #include "core/dom/NodeRenderingTraversal.h" | 40 #include "core/dom/NodeRenderingTraversal.h" |
| 41 #include "core/dom/TouchList.h" | 41 #include "core/dom/TouchList.h" |
| 42 #include "core/dom/shadow/ShadowRoot.h" | 42 #include "core/dom/shadow/ShadowRoot.h" |
| 43 #include "core/editing/Editor.h" | 43 #include "core/editing/Editor.h" |
| 44 #include "core/editing/FrameSelection.h" | 44 #include "core/editing/FrameSelection.h" |
| 45 #include "core/editing/TextIterator.h" | 45 #include "core/editing/TextIterator.h" |
| 46 #include "core/editing/htmlediting.h" | 46 #include "core/editing/htmlediting.h" |
| (...skipping 3967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4014 unsigned EventHandler::accessKeyModifiers() | 4014 unsigned EventHandler::accessKeyModifiers() |
| 4015 { | 4015 { |
| 4016 #if OS(MACOSX) | 4016 #if OS(MACOSX) |
| 4017 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 4017 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
| 4018 #else | 4018 #else |
| 4019 return PlatformEvent::AltKey; | 4019 return PlatformEvent::AltKey; |
| 4020 #endif | 4020 #endif |
| 4021 } | 4021 } |
| 4022 | 4022 |
| 4023 } // namespace WebCore | 4023 } // namespace WebCore |
| OLD | NEW |