| 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/FocusController.h" | 66 #include "core/page/FocusController.h" |
| 67 #include "core/frame/Frame.h" | 67 #include "core/frame/Frame.h" |
| 68 #include "core/page/FrameTree.h" | 68 #include "core/page/FrameTree.h" |
| 69 #include "core/frame/FrameView.h" | 69 #include "core/frame/FrameView.h" |
| 70 #include "core/inspector/InspectorController.h" | 70 #include "core/inspector/InspectorController.h" |
| 71 #include "core/page/MouseEventWithHitTestResults.h" | 71 #include "core/page/MouseEventWithHitTestResults.h" |
| 72 #include "core/page/Page.h" | 72 #include "core/page/Page.h" |
| 73 #include "core/page/Settings.h" | 73 #include "core/page/Settings.h" |
| 74 #include "core/page/SpatialNavigation.h" | 74 #include "core/page/SpatialNavigation.h" |
| 75 #include "core/page/TouchAdjustment.h" | 75 #include "core/page/TouchAdjustment.h" |
| 76 #include "core/platform/Cursor.h" | |
| 77 #include "core/platform/ScrollAnimator.h" | 76 #include "core/platform/ScrollAnimator.h" |
| 78 #include "core/platform/Scrollbar.h" | 77 #include "core/platform/Scrollbar.h" |
| 79 #include "core/platform/chromium/ChromiumDataObject.h" | 78 #include "core/platform/chromium/ChromiumDataObject.h" |
| 80 #include "core/platform/graphics/Image.h" | 79 #include "core/platform/graphics/Image.h" |
| 81 #include "core/rendering/HitTestRequest.h" | |
| 82 #include "core/rendering/HitTestResult.h" | 80 #include "core/rendering/HitTestResult.h" |
| 83 #include "core/rendering/RenderLayer.h" | 81 #include "core/rendering/RenderLayer.h" |
| 84 #include "core/rendering/RenderTextControlSingleLine.h" | 82 #include "core/rendering/RenderTextControlSingleLine.h" |
| 85 #include "core/rendering/RenderView.h" | 83 #include "core/rendering/RenderView.h" |
| 86 #include "core/rendering/RenderWidget.h" | 84 #include "core/rendering/RenderWidget.h" |
| 87 #include "core/rendering/style/CursorList.h" | 85 #include "core/rendering/style/CursorList.h" |
| 88 #include "core/svg/SVGDocument.h" | 86 #include "core/svg/SVGDocument.h" |
| 89 #include "core/svg/SVGElementInstance.h" | 87 #include "core/svg/SVGElementInstance.h" |
| 90 #include "core/svg/SVGUseElement.h" | 88 #include "core/svg/SVGUseElement.h" |
| 91 #include "platform/PlatformGestureEvent.h" | 89 #include "platform/PlatformGestureEvent.h" |
| (...skipping 3806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3898 unsigned EventHandler::accessKeyModifiers() | 3896 unsigned EventHandler::accessKeyModifiers() |
| 3899 { | 3897 { |
| 3900 #if OS(MACOSX) | 3898 #if OS(MACOSX) |
| 3901 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 3899 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
| 3902 #else | 3900 #else |
| 3903 return PlatformEvent::AltKey; | 3901 return PlatformEvent::AltKey; |
| 3904 #endif | 3902 #endif |
| 3905 } | 3903 } |
| 3906 | 3904 |
| 3907 } // namespace WebCore | 3905 } // namespace WebCore |
| OLD | NEW |