| 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 "EventHandler.h" | 29 #include "EventHandler.h" |
| 30 | 30 |
| 31 #include "AutoscrollController.h" | 31 #include "AutoscrollController.h" |
| 32 #include "CachedImage.h" | 32 #include "CachedImage.h" |
| 33 #include "Chrome.h" | 33 #include "Chrome.h" |
| 34 #include "ChromeClient.h" | 34 #include "ChromeClient.h" |
| 35 #include "ChromiumDataObject.h" | |
| 36 #include "ClipboardChromium.h" | |
| 37 #include "Cursor.h" | 35 #include "Cursor.h" |
| 38 #include "CursorList.h" | 36 #include "CursorList.h" |
| 39 #include "Document.h" | 37 #include "Document.h" |
| 40 #include "DocumentEventQueue.h" | 38 #include "DocumentEventQueue.h" |
| 41 #include "DragController.h" | 39 #include "DragController.h" |
| 42 #include "DragState.h" | 40 #include "DragState.h" |
| 43 #include "Editor.h" | 41 #include "Editor.h" |
| 44 #include "EditorClient.h" | 42 #include "EditorClient.h" |
| 45 #include "EventNames.h" | 43 #include "EventNames.h" |
| 46 #include "EventPathWalker.h" | 44 #include "EventPathWalker.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 #include "StyleCachedImage.h" | 81 #include "StyleCachedImage.h" |
| 84 #include "TextEvent.h" | 82 #include "TextEvent.h" |
| 85 #include "TextIterator.h" | 83 #include "TextIterator.h" |
| 86 #include "TouchAdjustment.h" | 84 #include "TouchAdjustment.h" |
| 87 #include "TouchEvent.h" | 85 #include "TouchEvent.h" |
| 88 #include "TouchList.h" | 86 #include "TouchList.h" |
| 89 #include "UserTypingGestureIndicator.h" | 87 #include "UserTypingGestureIndicator.h" |
| 90 #include "WheelEvent.h" | 88 #include "WheelEvent.h" |
| 91 #include "WindowsKeyboardCodes.h" | 89 #include "WindowsKeyboardCodes.h" |
| 92 #include "core/accessibility/AXObjectCache.h" | 90 #include "core/accessibility/AXObjectCache.h" |
| 91 #include "core/platform/chromium/ChromiumDataObject.h" |
| 92 #include "core/platform/chromium/ClipboardChromium.h" |
| 93 #include "core/platform/graphics/FloatPoint.h" | 93 #include "core/platform/graphics/FloatPoint.h" |
| 94 #include "core/platform/graphics/FloatRect.h" | 94 #include "core/platform/graphics/FloatRect.h" |
| 95 #include "core/platform/graphics/Image.h" | 95 #include "core/platform/graphics/Image.h" |
| 96 #include "htmlediting.h" | 96 #include "htmlediting.h" |
| 97 #include <wtf/Assertions.h> | 97 #include <wtf/Assertions.h> |
| 98 #include <wtf/CurrentTime.h> | 98 #include <wtf/CurrentTime.h> |
| 99 #include <wtf/StdLibExtras.h> | 99 #include <wtf/StdLibExtras.h> |
| 100 #include <wtf/TemporaryChange.h> | 100 #include <wtf/TemporaryChange.h> |
| 101 | 101 |
| 102 #if ENABLE(SVG) | 102 #if ENABLE(SVG) |
| (...skipping 3870 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 |