Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Side by Side Diff: Source/core/page/EventHandler.cpp

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/page/EventHandler.h ('k') | Source/core/page/EventSource.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 10 matching lines...) Expand all
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28 #include "config.h" 28 #include "config.h"
29 #include "core/page/EventHandler.h" 29 #include "core/page/EventHandler.h"
30 30
31 #include "Document.h"
32 #include "DocumentEventQueue.h"
33 #include "EventNames.h"
34 #include "EventPathWalker.h"
35 #include "ExceptionCodePlaceholder.h"
36 #include "HTMLFrameElementBase.h" 31 #include "HTMLFrameElementBase.h"
37 #include "HTMLFrameSetElement.h" 32 #include "HTMLFrameSetElement.h"
38 #include "HTMLInputElement.h" 33 #include "HTMLInputElement.h"
39 #include "HTMLNames.h" 34 #include "HTMLNames.h"
40 #include "InspectorInstrumentation.h" 35 #include "InspectorInstrumentation.h"
41 #include "KeyboardEvent.h"
42 #include "MouseEvent.h"
43 #include "PluginDocument.h" 36 #include "PluginDocument.h"
44 #include "ShadowRoot.h"
45 #include "TextEvent.h"
46 #include "TouchEvent.h"
47 #include "TouchList.h"
48 #include "UserTypingGestureIndicator.h"
49 #include "WheelEvent.h"
50 #include "core/accessibility/AXObjectCache.h" 37 #include "core/accessibility/AXObjectCache.h"
38 #include "core/dom/Document.h"
39 #include "core/dom/DocumentEventQueue.h"
40 #include "core/dom/EventNames.h"
41 #include "core/dom/EventPathWalker.h"
42 #include "core/dom/ExceptionCodePlaceholder.h"
43 #include "core/dom/KeyboardEvent.h"
44 #include "core/dom/MouseEvent.h"
45 #include "core/dom/ShadowRoot.h"
46 #include "core/dom/TextEvent.h"
47 #include "core/dom/TouchEvent.h"
48 #include "core/dom/TouchList.h"
49 #include "core/dom/UserTypingGestureIndicator.h"
50 #include "core/dom/WheelEvent.h"
51 #include "core/editing/Editor.h" 51 #include "core/editing/Editor.h"
52 #include "core/editing/FrameSelection.h" 52 #include "core/editing/FrameSelection.h"
53 #include "core/editing/TextIterator.h" 53 #include "core/editing/TextIterator.h"
54 #include "core/editing/htmlediting.h" 54 #include "core/editing/htmlediting.h"
55 #include "core/loader/FrameLoader.h" 55 #include "core/loader/FrameLoader.h"
56 #include "core/loader/cache/CachedImage.h" 56 #include "core/loader/cache/CachedImage.h"
57 #include "core/page/AutoscrollController.h" 57 #include "core/page/AutoscrollController.h"
58 #include "core/page/Chrome.h" 58 #include "core/page/Chrome.h"
59 #include "core/page/ChromeClient.h" 59 #include "core/page/ChromeClient.h"
60 #include "core/page/DragController.h" 60 #include "core/page/DragController.h"
(...skipping 3928 matching lines...) Expand 10 before | Expand all | Expand 10 after
3989 unsigned EventHandler::accessKeyModifiers() 3989 unsigned EventHandler::accessKeyModifiers()
3990 { 3990 {
3991 #if OS(DARWIN) 3991 #if OS(DARWIN)
3992 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; 3992 return PlatformEvent::CtrlKey | PlatformEvent::AltKey;
3993 #else 3993 #else
3994 return PlatformEvent::AltKey; 3994 return PlatformEvent::AltKey;
3995 #endif 3995 #endif
3996 } 3996 }
3997 3997
3998 } // namespace WebCore 3998 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/EventHandler.h ('k') | Source/core/page/EventSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698