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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 #include "core/frame/Settings.h" | 59 #include "core/frame/Settings.h" |
60 #include "core/html/HTMLDialogElement.h" | 60 #include "core/html/HTMLDialogElement.h" |
61 #include "core/html/HTMLFrameElementBase.h" | 61 #include "core/html/HTMLFrameElementBase.h" |
62 #include "core/html/HTMLFrameSetElement.h" | 62 #include "core/html/HTMLFrameSetElement.h" |
63 #include "core/html/HTMLInputElement.h" | 63 #include "core/html/HTMLInputElement.h" |
64 #include "core/layout/HitTestRequest.h" | 64 #include "core/layout/HitTestRequest.h" |
65 #include "core/layout/HitTestResult.h" | 65 #include "core/layout/HitTestResult.h" |
66 #include "core/layout/LayoutPart.h" | 66 #include "core/layout/LayoutPart.h" |
67 #include "core/layout/LayoutTextControlSingleLine.h" | 67 #include "core/layout/LayoutTextControlSingleLine.h" |
68 #include "core/layout/LayoutView.h" | 68 #include "core/layout/LayoutView.h" |
69 #include "core/layout/style/ComputedStyle.h" | 69 #include "core/style/ComputedStyle.h" |
70 #include "core/loader/FrameLoader.h" | 70 #include "core/loader/FrameLoader.h" |
71 #include "core/loader/FrameLoaderClient.h" | 71 #include "core/loader/FrameLoaderClient.h" |
72 #include "core/page/AutoscrollController.h" | 72 #include "core/page/AutoscrollController.h" |
73 #include "core/page/Chrome.h" | 73 #include "core/page/Chrome.h" |
74 #include "core/page/ChromeClient.h" | 74 #include "core/page/ChromeClient.h" |
75 #include "core/page/DragController.h" | 75 #include "core/page/DragController.h" |
76 #include "core/page/DragState.h" | 76 #include "core/page/DragState.h" |
77 #include "core/page/EditorClient.h" | 77 #include "core/page/EditorClient.h" |
78 #include "core/page/FocusController.h" | 78 #include "core/page/FocusController.h" |
79 #include "core/page/FrameTree.h" | 79 #include "core/page/FrameTree.h" |
(...skipping 3915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3995 unsigned EventHandler::accessKeyModifiers() | 3995 unsigned EventHandler::accessKeyModifiers() |
3996 { | 3996 { |
3997 #if OS(MACOSX) | 3997 #if OS(MACOSX) |
3998 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; | 3998 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; |
3999 #else | 3999 #else |
4000 return PlatformEvent::AltKey; | 4000 return PlatformEvent::AltKey; |
4001 #endif | 4001 #endif |
4002 } | 4002 } |
4003 | 4003 |
4004 } // namespace blink | 4004 } // namespace blink |
OLD | NEW |