| 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 "EventHandler.h" | 29 #include "EventHandler.h" | 
| 30 | 30 | 
| 31 #include "AXObjectCache.h" |  | 
| 32 #include "AutoscrollController.h" | 31 #include "AutoscrollController.h" | 
| 33 #include "CachedImage.h" | 32 #include "CachedImage.h" | 
| 34 #include "Chrome.h" | 33 #include "Chrome.h" | 
| 35 #include "ChromeClient.h" | 34 #include "ChromeClient.h" | 
| 36 #include "ChromiumDataObject.h" | 35 #include "ChromiumDataObject.h" | 
| 37 #include "ClipboardChromium.h" | 36 #include "ClipboardChromium.h" | 
| 38 #include "Cursor.h" | 37 #include "Cursor.h" | 
| 39 #include "CursorList.h" | 38 #include "CursorList.h" | 
| 40 #include "Document.h" | 39 #include "Document.h" | 
| 41 #include "DocumentEventQueue.h" | 40 #include "DocumentEventQueue.h" | 
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 85 #include "StaticHashSetNodeList.h" | 84 #include "StaticHashSetNodeList.h" | 
| 86 #include "StyleCachedImage.h" | 85 #include "StyleCachedImage.h" | 
| 87 #include "TextEvent.h" | 86 #include "TextEvent.h" | 
| 88 #include "TextIterator.h" | 87 #include "TextIterator.h" | 
| 89 #include "TouchAdjustment.h" | 88 #include "TouchAdjustment.h" | 
| 90 #include "TouchEvent.h" | 89 #include "TouchEvent.h" | 
| 91 #include "TouchList.h" | 90 #include "TouchList.h" | 
| 92 #include "UserTypingGestureIndicator.h" | 91 #include "UserTypingGestureIndicator.h" | 
| 93 #include "WheelEvent.h" | 92 #include "WheelEvent.h" | 
| 94 #include "WindowsKeyboardCodes.h" | 93 #include "WindowsKeyboardCodes.h" | 
|  | 94 #include "core/accessibility/AXObjectCache.h" | 
| 95 #include "htmlediting.h" | 95 #include "htmlediting.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 #if ENABLE(SVG) | 101 #if ENABLE(SVG) | 
| 102 #include "SVGDocument.h" | 102 #include "SVGDocument.h" | 
| 103 #include "SVGElementInstance.h" | 103 #include "SVGElementInstance.h" | 
| 104 #include "SVGNames.h" | 104 #include "SVGNames.h" | 
| (...skipping 3857 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 3962 unsigned EventHandler::accessKeyModifiers() | 3962 unsigned EventHandler::accessKeyModifiers() | 
| 3963 { | 3963 { | 
| 3964 #if OS(DARWIN) | 3964 #if OS(DARWIN) | 
| 3965     return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 3965     return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 
| 3966 #else | 3966 #else | 
| 3967     return PlatformEvent::AltKey; | 3967     return PlatformEvent::AltKey; | 
| 3968 #endif | 3968 #endif | 
| 3969 } | 3969 } | 
| 3970 | 3970 | 
| 3971 } // namespace WebCore | 3971 } // namespace WebCore | 
| OLD | NEW | 
|---|