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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 #include "core/rendering/RenderTextControlSingleLine.h" | 82 #include "core/rendering/RenderTextControlSingleLine.h" |
83 #include "core/rendering/RenderView.h" | 83 #include "core/rendering/RenderView.h" |
84 #include "core/rendering/RenderWidget.h" | 84 #include "core/rendering/RenderWidget.h" |
85 #include "core/rendering/style/RenderStyle.h" | 85 #include "core/rendering/style/RenderStyle.h" |
86 #include "core/svg/SVGDocumentExtensions.h" | 86 #include "core/svg/SVGDocumentExtensions.h" |
87 #include "core/svg/SVGUseElement.h" | 87 #include "core/svg/SVGUseElement.h" |
88 #include "platform/PlatformGestureEvent.h" | 88 #include "platform/PlatformGestureEvent.h" |
89 #include "platform/PlatformKeyboardEvent.h" | 89 #include "platform/PlatformKeyboardEvent.h" |
90 #include "platform/PlatformTouchEvent.h" | 90 #include "platform/PlatformTouchEvent.h" |
91 #include "platform/PlatformWheelEvent.h" | 91 #include "platform/PlatformWheelEvent.h" |
| 92 #include "platform/TraceEvent.h" |
92 #include "platform/WindowsKeyboardCodes.h" | 93 #include "platform/WindowsKeyboardCodes.h" |
93 #include "platform/geometry/FloatPoint.h" | 94 #include "platform/geometry/FloatPoint.h" |
94 #include "platform/graphics/Image.h" | 95 #include "platform/graphics/Image.h" |
95 #include "platform/heap/Handle.h" | 96 #include "platform/heap/Handle.h" |
96 #include "platform/scroll/ScrollAnimator.h" | 97 #include "platform/scroll/ScrollAnimator.h" |
97 #include "platform/scroll/Scrollbar.h" | 98 #include "platform/scroll/Scrollbar.h" |
98 #include "wtf/Assertions.h" | 99 #include "wtf/Assertions.h" |
99 #include "wtf/CurrentTime.h" | 100 #include "wtf/CurrentTime.h" |
100 #include "wtf/StdLibExtras.h" | 101 #include "wtf/StdLibExtras.h" |
101 #include "wtf/TemporaryChange.h" | 102 #include "wtf/TemporaryChange.h" |
(...skipping 3650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3752 unsigned EventHandler::accessKeyModifiers() | 3753 unsigned EventHandler::accessKeyModifiers() |
3753 { | 3754 { |
3754 #if OS(MACOSX) | 3755 #if OS(MACOSX) |
3755 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 3756 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
3756 #else | 3757 #else |
3757 return PlatformEvent::AltKey; | 3758 return PlatformEvent::AltKey; |
3758 #endif | 3759 #endif |
3759 } | 3760 } |
3760 | 3761 |
3761 } // namespace WebCore | 3762 } // namespace WebCore |
OLD | NEW |