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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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" |
47 #include "core/events/DOMWindowEventQueue.h" | 47 #include "core/events/DOMWindowEventQueue.h" |
48 #include "core/events/EventPath.h" | 48 #include "core/events/EventPath.h" |
49 #include "core/events/KeyboardEvent.h" | 49 #include "core/events/KeyboardEvent.h" |
50 #include "core/events/MouseEvent.h" | 50 #include "core/events/MouseEvent.h" |
51 #include "core/events/TextEvent.h" | 51 #include "core/events/TextEvent.h" |
52 #include "core/events/ThreadLocalEventNames.h" | |
53 #include "core/events/TouchEvent.h" | 52 #include "core/events/TouchEvent.h" |
54 #include "core/events/WheelEvent.h" | 53 #include "core/events/WheelEvent.h" |
55 #include "core/fetch/ImageResource.h" | 54 #include "core/fetch/ImageResource.h" |
56 #include "core/frame/FrameView.h" | 55 #include "core/frame/FrameView.h" |
57 #include "core/frame/LocalFrame.h" | 56 #include "core/frame/LocalFrame.h" |
58 #include "core/html/HTMLDialogElement.h" | 57 #include "core/html/HTMLDialogElement.h" |
59 #include "core/html/HTMLFrameElementBase.h" | 58 #include "core/html/HTMLFrameElementBase.h" |
60 #include "core/html/HTMLFrameSetElement.h" | 59 #include "core/html/HTMLFrameSetElement.h" |
61 #include "core/html/HTMLInputElement.h" | 60 #include "core/html/HTMLInputElement.h" |
62 #include "core/loader/FrameLoader.h" | 61 #include "core/loader/FrameLoader.h" |
(...skipping 3961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4024 unsigned EventHandler::accessKeyModifiers() | 4023 unsigned EventHandler::accessKeyModifiers() |
4025 { | 4024 { |
4026 #if OS(MACOSX) | 4025 #if OS(MACOSX) |
4027 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 4026 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
4028 #else | 4027 #else |
4029 return PlatformEvent::AltKey; | 4028 return PlatformEvent::AltKey; |
4030 #endif | 4029 #endif |
4031 } | 4030 } |
4032 | 4031 |
4033 } // namespace WebCore | 4032 } // namespace WebCore |
OLD | NEW |