| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 #include "core/page/DragController.h" | 68 #include "core/page/DragController.h" |
| 69 #include "core/page/DragState.h" | 69 #include "core/page/DragState.h" |
| 70 #include "core/page/EditorClient.h" | 70 #include "core/page/EditorClient.h" |
| 71 #include "core/page/FocusController.h" | 71 #include "core/page/FocusController.h" |
| 72 #include "core/page/FrameTree.h" | 72 #include "core/page/FrameTree.h" |
| 73 #include "core/page/Page.h" | 73 #include "core/page/Page.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/rendering/HitTestRequest.h" | 76 #include "core/rendering/HitTestRequest.h" |
| 77 #include "core/rendering/HitTestResult.h" | 77 #include "core/rendering/HitTestResult.h" |
| 78 #include "core/rendering/RenderFlowThread.h" | |
| 79 #include "core/rendering/RenderLayer.h" | 78 #include "core/rendering/RenderLayer.h" |
| 80 #include "core/rendering/RenderPart.h" | 79 #include "core/rendering/RenderPart.h" |
| 81 #include "core/rendering/RenderTextControlSingleLine.h" | 80 #include "core/rendering/RenderTextControlSingleLine.h" |
| 82 #include "core/rendering/RenderView.h" | 81 #include "core/rendering/RenderView.h" |
| 83 #include "core/rendering/style/RenderStyle.h" | 82 #include "core/rendering/style/RenderStyle.h" |
| 84 #include "core/svg/SVGDocumentExtensions.h" | 83 #include "core/svg/SVGDocumentExtensions.h" |
| 85 #include "platform/PlatformGestureEvent.h" | 84 #include "platform/PlatformGestureEvent.h" |
| 86 #include "platform/PlatformKeyboardEvent.h" | 85 #include "platform/PlatformKeyboardEvent.h" |
| 87 #include "platform/PlatformTouchEvent.h" | 86 #include "platform/PlatformTouchEvent.h" |
| 88 #include "platform/PlatformWheelEvent.h" | 87 #include "platform/PlatformWheelEvent.h" |
| (...skipping 3771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3860 unsigned EventHandler::accessKeyModifiers() | 3859 unsigned EventHandler::accessKeyModifiers() |
| 3861 { | 3860 { |
| 3862 #if OS(MACOSX) | 3861 #if OS(MACOSX) |
| 3863 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 3862 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
| 3864 #else | 3863 #else |
| 3865 return PlatformEvent::AltKey; | 3864 return PlatformEvent::AltKey; |
| 3866 #endif | 3865 #endif |
| 3867 } | 3866 } |
| 3868 | 3867 |
| 3869 } // namespace blink | 3868 } // namespace blink |
| OLD | NEW |