| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 #include "core/page/FocusController.h" | 65 #include "core/page/FocusController.h" |
| 66 #include "core/page/Frame.h" | 66 #include "core/page/Frame.h" |
| 67 #include "core/page/FrameTree.h" | 67 #include "core/page/FrameTree.h" |
| 68 #include "core/page/FrameView.h" | 68 #include "core/page/FrameView.h" |
| 69 #include "core/page/MouseEventWithHitTestResults.h" | 69 #include "core/page/MouseEventWithHitTestResults.h" |
| 70 #include "core/page/Page.h" | 70 #include "core/page/Page.h" |
| 71 #include "core/page/Settings.h" | 71 #include "core/page/Settings.h" |
| 72 #include "core/page/SpatialNavigation.h" | 72 #include "core/page/SpatialNavigation.h" |
| 73 #include "core/page/TouchAdjustment.h" | 73 #include "core/page/TouchAdjustment.h" |
| 74 #include "core/platform/Cursor.h" | 74 #include "core/platform/Cursor.h" |
| 75 #include "core/platform/PlatformEvent.h" | |
| 76 #include "core/platform/PlatformGestureEvent.h" | 75 #include "core/platform/PlatformGestureEvent.h" |
| 77 #include "core/platform/PlatformKeyboardEvent.h" | 76 #include "core/platform/PlatformKeyboardEvent.h" |
| 78 #include "core/platform/PlatformTouchEvent.h" | 77 #include "core/platform/PlatformTouchEvent.h" |
| 79 #include "core/platform/PlatformWheelEvent.h" | 78 #include "core/platform/PlatformWheelEvent.h" |
| 80 #include "core/platform/ScrollAnimator.h" | 79 #include "core/platform/ScrollAnimator.h" |
| 81 #include "core/platform/Scrollbar.h" | 80 #include "core/platform/Scrollbar.h" |
| 82 #include "core/platform/WindowsKeyboardCodes.h" | 81 #include "core/platform/WindowsKeyboardCodes.h" |
| 83 #include "core/platform/chromium/ChromiumDataObject.h" | 82 #include "core/platform/chromium/ChromiumDataObject.h" |
| 84 #include "core/platform/graphics/Image.h" | 83 #include "core/platform/graphics/Image.h" |
| 85 #include "core/rendering/HitTestRequest.h" | 84 #include "core/rendering/HitTestRequest.h" |
| (...skipping 3751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3837 unsigned EventHandler::accessKeyModifiers() | 3836 unsigned EventHandler::accessKeyModifiers() |
| 3838 { | 3837 { |
| 3839 #if OS(MACOSX) | 3838 #if OS(MACOSX) |
| 3840 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 3839 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
| 3841 #else | 3840 #else |
| 3842 return PlatformEvent::AltKey; | 3841 return PlatformEvent::AltKey; |
| 3843 #endif | 3842 #endif |
| 3844 } | 3843 } |
| 3845 | 3844 |
| 3846 } // namespace WebCore | 3845 } // namespace WebCore |
| OLD | NEW |