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

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

Issue 16282004: Remove unused includes from various .cpp files in core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: re-add HTMLFormElement to EmptyClients for windows Created 7 years, 6 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
« no previous file with comments | « Source/core/page/DragController.cpp ('k') | Source/core/page/EventSource.cpp » ('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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "core/dom/UserTypingGestureIndicator.h" 44 #include "core/dom/UserTypingGestureIndicator.h"
45 #include "core/dom/WheelEvent.h" 45 #include "core/dom/WheelEvent.h"
46 #include "core/dom/shadow/ShadowRoot.h" 46 #include "core/dom/shadow/ShadowRoot.h"
47 #include "core/editing/Editor.h" 47 #include "core/editing/Editor.h"
48 #include "core/editing/FrameSelection.h" 48 #include "core/editing/FrameSelection.h"
49 #include "core/editing/TextIterator.h" 49 #include "core/editing/TextIterator.h"
50 #include "core/editing/htmlediting.h" 50 #include "core/editing/htmlediting.h"
51 #include "core/html/HTMLFrameElementBase.h" 51 #include "core/html/HTMLFrameElementBase.h"
52 #include "core/html/HTMLFrameSetElement.h" 52 #include "core/html/HTMLFrameSetElement.h"
53 #include "core/html/HTMLInputElement.h" 53 #include "core/html/HTMLInputElement.h"
54 #include "core/html/PluginDocument.h"
55 #include "core/loader/FrameLoader.h" 54 #include "core/loader/FrameLoader.h"
56 #include "core/loader/cache/CachedImage.h" 55 #include "core/loader/cache/CachedImage.h"
57 #include "core/page/AutoscrollController.h" 56 #include "core/page/AutoscrollController.h"
58 #include "core/page/Chrome.h" 57 #include "core/page/Chrome.h"
59 #include "core/page/ChromeClient.h"
60 #include "core/page/DragController.h" 58 #include "core/page/DragController.h"
61 #include "core/page/DragState.h" 59 #include "core/page/DragState.h"
62 #include "core/page/EditorClient.h" 60 #include "core/page/EditorClient.h"
63 #include "core/page/FocusController.h" 61 #include "core/page/FocusController.h"
64 #include "core/page/Frame.h" 62 #include "core/page/Frame.h"
65 #include "core/page/FrameTree.h" 63 #include "core/page/FrameTree.h"
66 #include "core/page/FrameView.h" 64 #include "core/page/FrameView.h"
67 #include "core/page/MouseEventWithHitTestResults.h" 65 #include "core/page/MouseEventWithHitTestResults.h"
68 #include "core/page/Page.h" 66 #include "core/page/Page.h"
69 #include "core/page/Settings.h" 67 #include "core/page/Settings.h"
70 #include "core/page/SpatialNavigation.h" 68 #include "core/page/SpatialNavigation.h"
71 #include "core/page/TouchAdjustment.h" 69 #include "core/page/TouchAdjustment.h"
72 #include "core/platform/Cursor.h" 70 #include "core/platform/Cursor.h"
73 #include "core/platform/NotImplemented.h"
74 #include "core/platform/PlatformEvent.h" 71 #include "core/platform/PlatformEvent.h"
75 #include "core/platform/PlatformGestureEvent.h" 72 #include "core/platform/PlatformGestureEvent.h"
76 #include "core/platform/PlatformKeyboardEvent.h" 73 #include "core/platform/PlatformKeyboardEvent.h"
77 #include "core/platform/PlatformTouchEvent.h" 74 #include "core/platform/PlatformTouchEvent.h"
78 #include "core/platform/PlatformWheelEvent.h" 75 #include "core/platform/PlatformWheelEvent.h"
79 #include "core/platform/ScrollAnimator.h" 76 #include "core/platform/ScrollAnimator.h"
80 #include "core/platform/Scrollbar.h" 77 #include "core/platform/Scrollbar.h"
81 #include "core/platform/WindowsKeyboardCodes.h" 78 #include "core/platform/WindowsKeyboardCodes.h"
82 #include "core/platform/chromium/ChromiumDataObject.h" 79 #include "core/platform/chromium/ChromiumDataObject.h"
83 #include "core/platform/chromium/ClipboardChromium.h" 80 #include "core/platform/chromium/ClipboardChromium.h"
84 #include "core/platform/graphics/FloatPoint.h" 81 #include "core/platform/graphics/FloatPoint.h"
85 #include "core/platform/graphics/FloatRect.h"
86 #include "core/platform/graphics/Image.h" 82 #include "core/platform/graphics/Image.h"
87 #include "core/rendering/HitTestRequest.h" 83 #include "core/rendering/HitTestRequest.h"
88 #include "core/rendering/HitTestResult.h" 84 #include "core/rendering/HitTestResult.h"
89 #include "core/rendering/RenderFrameSet.h"
90 #include "core/rendering/RenderLayer.h" 85 #include "core/rendering/RenderLayer.h"
91 #include "core/rendering/RenderTextControlSingleLine.h" 86 #include "core/rendering/RenderTextControlSingleLine.h"
92 #include "core/rendering/RenderView.h" 87 #include "core/rendering/RenderView.h"
93 #include "core/rendering/RenderWidget.h" 88 #include "core/rendering/RenderWidget.h"
94 #include "core/rendering/style/CursorList.h" 89 #include "core/rendering/style/CursorList.h"
95 #include "core/rendering/style/StyleCachedImage.h"
96 #include "core/rendering/style/StyleCachedImageSet.h"
97 #include "core/svg/SVGDocument.h" 90 #include "core/svg/SVGDocument.h"
98 #include "core/svg/SVGElementInstance.h" 91 #include "core/svg/SVGElementInstance.h"
99 #include "core/svg/SVGUseElement.h" 92 #include "core/svg/SVGUseElement.h"
100 #include <wtf/Assertions.h> 93 #include <wtf/Assertions.h>
101 #include <wtf/CurrentTime.h> 94 #include <wtf/CurrentTime.h>
102 #include <wtf/StdLibExtras.h> 95 #include <wtf/StdLibExtras.h>
103 #include <wtf/TemporaryChange.h> 96 #include <wtf/TemporaryChange.h>
104 97
105 namespace WebCore { 98 namespace WebCore {
106 99
(...skipping 3777 matching lines...) Expand 10 before | Expand all | Expand 10 after
3884 unsigned EventHandler::accessKeyModifiers() 3877 unsigned EventHandler::accessKeyModifiers()
3885 { 3878 {
3886 #if OS(DARWIN) 3879 #if OS(DARWIN)
3887 return PlatformEvent::CtrlKey | PlatformEvent::AltKey; 3880 return PlatformEvent::CtrlKey | PlatformEvent::AltKey;
3888 #else 3881 #else
3889 return PlatformEvent::AltKey; 3882 return PlatformEvent::AltKey;
3890 #endif 3883 #endif
3891 } 3884 }
3892 3885
3893 } // namespace WebCore 3886 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/DragController.cpp ('k') | Source/core/page/EventSource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698