| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #include "core/page/FrameTree.h" | 66 #include "core/page/FrameTree.h" |
| 67 #include "core/frame/FrameView.h" | 67 #include "core/frame/FrameView.h" |
| 68 #include "core/page/MouseEventWithHitTestResults.h" | 68 #include "core/page/MouseEventWithHitTestResults.h" |
| 69 #include "core/page/Page.h" | 69 #include "core/page/Page.h" |
| 70 #include "core/page/Settings.h" | 70 #include "core/page/Settings.h" |
| 71 #include "core/page/SpatialNavigation.h" | 71 #include "core/page/SpatialNavigation.h" |
| 72 #include "core/page/TouchAdjustment.h" | 72 #include "core/page/TouchAdjustment.h" |
| 73 #include "core/platform/Cursor.h" | 73 #include "core/platform/Cursor.h" |
| 74 #include "core/platform/ScrollAnimator.h" | 74 #include "core/platform/ScrollAnimator.h" |
| 75 #include "core/platform/Scrollbar.h" | 75 #include "core/platform/Scrollbar.h" |
| 76 #include "core/platform/WindowsKeyboardCodes.h" | |
| 77 #include "core/platform/chromium/ChromiumDataObject.h" | 76 #include "core/platform/chromium/ChromiumDataObject.h" |
| 78 #include "core/platform/graphics/Image.h" | 77 #include "core/platform/graphics/Image.h" |
| 79 #include "core/rendering/HitTestRequest.h" | 78 #include "core/rendering/HitTestRequest.h" |
| 80 #include "core/rendering/HitTestResult.h" | 79 #include "core/rendering/HitTestResult.h" |
| 81 #include "core/rendering/RenderLayer.h" | 80 #include "core/rendering/RenderLayer.h" |
| 82 #include "core/rendering/RenderTextControlSingleLine.h" | 81 #include "core/rendering/RenderTextControlSingleLine.h" |
| 83 #include "core/rendering/RenderView.h" | 82 #include "core/rendering/RenderView.h" |
| 84 #include "core/rendering/RenderWidget.h" | 83 #include "core/rendering/RenderWidget.h" |
| 85 #include "core/rendering/style/CursorList.h" | 84 #include "core/rendering/style/CursorList.h" |
| 86 #include "core/svg/SVGDocument.h" | 85 #include "core/svg/SVGDocument.h" |
| 87 #include "core/svg/SVGElementInstance.h" | 86 #include "core/svg/SVGElementInstance.h" |
| 88 #include "core/svg/SVGUseElement.h" | 87 #include "core/svg/SVGUseElement.h" |
| 89 #include "platform/PlatformGestureEvent.h" | 88 #include "platform/PlatformGestureEvent.h" |
| 90 #include "platform/PlatformKeyboardEvent.h" | 89 #include "platform/PlatformKeyboardEvent.h" |
| 91 #include "platform/PlatformTouchEvent.h" | 90 #include "platform/PlatformTouchEvent.h" |
| 92 #include "platform/PlatformWheelEvent.h" | 91 #include "platform/PlatformWheelEvent.h" |
| 92 #include "platform/WindowsKeyboardCodes.h" |
| 93 #include "platform/geometry/FloatPoint.h" | 93 #include "platform/geometry/FloatPoint.h" |
| 94 #include "wtf/Assertions.h" | 94 #include "wtf/Assertions.h" |
| 95 #include "wtf/CurrentTime.h" | 95 #include "wtf/CurrentTime.h" |
| 96 #include "wtf/StdLibExtras.h" | 96 #include "wtf/StdLibExtras.h" |
| 97 #include "wtf/TemporaryChange.h" | 97 #include "wtf/TemporaryChange.h" |
| 98 | 98 |
| 99 namespace WebCore { | 99 namespace WebCore { |
| 100 | 100 |
| 101 using namespace HTMLNames; | 101 using namespace HTMLNames; |
| 102 using namespace SVGNames; | 102 using namespace SVGNames; |
| (...skipping 3760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3863 unsigned EventHandler::accessKeyModifiers() | 3863 unsigned EventHandler::accessKeyModifiers() |
| 3864 { | 3864 { |
| 3865 #if OS(MACOSX) | 3865 #if OS(MACOSX) |
| 3866 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 3866 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
| 3867 #else | 3867 #else |
| 3868 return PlatformEvent::AltKey; | 3868 return PlatformEvent::AltKey; |
| 3869 #endif | 3869 #endif |
| 3870 } | 3870 } |
| 3871 | 3871 |
| 3872 } // namespace WebCore | 3872 } // namespace WebCore |
| OLD | NEW |