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

Side by Side Diff: Source/core/page/DOMWindow.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/DOMSecurityPolicy.cpp ('k') | Source/core/page/DeviceController.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, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 27 matching lines...) Expand all
38 #include "bindings/v8/ScriptCallStackFactory.h" 38 #include "bindings/v8/ScriptCallStackFactory.h"
39 #include "bindings/v8/ScriptController.h" 39 #include "bindings/v8/ScriptController.h"
40 #include "bindings/v8/SerializedScriptValue.h" 40 #include "bindings/v8/SerializedScriptValue.h"
41 #include "core/css/CSSComputedStyleDeclaration.h" 41 #include "core/css/CSSComputedStyleDeclaration.h"
42 #include "core/css/CSSRuleList.h" 42 #include "core/css/CSSRuleList.h"
43 #include "core/css/DOMWindowCSS.h" 43 #include "core/css/DOMWindowCSS.h"
44 #include "core/css/MediaQueryList.h" 44 #include "core/css/MediaQueryList.h"
45 #include "core/css/MediaQueryMatcher.h" 45 #include "core/css/MediaQueryMatcher.h"
46 #include "core/css/StyleMedia.h" 46 #include "core/css/StyleMedia.h"
47 #include "core/css/resolver/StyleResolver.h" 47 #include "core/css/resolver/StyleResolver.h"
48 #include "core/dom/BeforeUnloadEvent.h"
49 #include "core/dom/DOMStringList.h"
50 #include "core/dom/DeviceOrientationController.h" 48 #include "core/dom/DeviceOrientationController.h"
51 #include "core/dom/Document.h" 49 #include "core/dom/Document.h"
52 #include "core/dom/Element.h" 50 #include "core/dom/Element.h"
53 #include "core/dom/EventException.h"
54 #include "core/dom/EventListener.h" 51 #include "core/dom/EventListener.h"
55 #include "core/dom/EventNames.h" 52 #include "core/dom/EventNames.h"
56 #include "core/dom/ExceptionCode.h" 53 #include "core/dom/ExceptionCode.h"
57 #include "core/dom/ExceptionCodePlaceholder.h" 54 #include "core/dom/ExceptionCodePlaceholder.h"
58 #include "core/dom/MessageEvent.h" 55 #include "core/dom/MessageEvent.h"
59 #include "core/dom/PageTransitionEvent.h" 56 #include "core/dom/PageTransitionEvent.h"
60 #include "core/dom/RequestAnimationFrameCallback.h" 57 #include "core/dom/RequestAnimationFrameCallback.h"
61 #include "core/editing/Editor.h" 58 #include "core/editing/Editor.h"
62 #include "core/history/BackForwardController.h" 59 #include "core/history/BackForwardController.h"
63 #include "core/html/DOMSettableTokenList.h"
64 #include "core/html/DOMTokenList.h"
65 #include "core/html/DOMURL.h"
66 #include "core/html/HTMLFrameOwnerElement.h" 60 #include "core/html/HTMLFrameOwnerElement.h"
67 #include "core/inspector/InspectorInstrumentation.h" 61 #include "core/inspector/InspectorInstrumentation.h"
68 #include "core/inspector/ScriptCallStack.h" 62 #include "core/inspector/ScriptCallStack.h"
69 #include "core/loader/DocumentLoader.h" 63 #include "core/loader/DocumentLoader.h"
70 #include "core/loader/FrameLoadRequest.h" 64 #include "core/loader/FrameLoadRequest.h"
71 #include "core/loader/FrameLoader.h" 65 #include "core/loader/FrameLoader.h"
72 #include "core/loader/FrameLoaderClient.h" 66 #include "core/loader/FrameLoaderClient.h"
73 #include "core/loader/appcache/DOMApplicationCache.h" 67 #include "core/loader/appcache/DOMApplicationCache.h"
74 #include "core/page/BarProp.h" 68 #include "core/page/BarProp.h"
75 #include "core/page/Chrome.h" 69 #include "core/page/Chrome.h"
76 #include "core/page/ChromeClient.h" 70 #include "core/page/ChromeClient.h"
77 #include "core/page/Console.h" 71 #include "core/page/Console.h"
78 #include "core/page/Crypto.h" 72 #include "core/page/Crypto.h"
79 #include "core/page/DOMPoint.h" 73 #include "core/page/DOMPoint.h"
80 #include "core/page/DOMSelection.h"
81 #include "core/page/DOMTimer.h" 74 #include "core/page/DOMTimer.h"
82 #include "core/page/EventHandler.h" 75 #include "core/page/EventHandler.h"
83 #include "core/page/FocusController.h" 76 #include "core/page/FocusController.h"
84 #include "core/page/Frame.h" 77 #include "core/page/Frame.h"
85 #include "core/page/FrameTree.h" 78 #include "core/page/FrameTree.h"
86 #include "core/page/FrameView.h" 79 #include "core/page/FrameView.h"
87 #include "core/page/History.h" 80 #include "core/page/History.h"
88 #include "core/page/Location.h" 81 #include "core/page/Location.h"
89 #include "core/page/Navigator.h" 82 #include "core/page/Navigator.h"
90 #include "core/page/Page.h" 83 #include "core/page/Page.h"
91 #include "core/page/PageConsole.h" 84 #include "core/page/PageConsole.h"
92 #include "core/page/PageGroup.h" 85 #include "core/page/PageGroup.h"
93 #include "core/page/Performance.h" 86 #include "core/page/Performance.h"
94 #include "core/page/Screen.h" 87 #include "core/page/Screen.h"
95 #include "core/page/Settings.h" 88 #include "core/page/Settings.h"
96 #include "core/page/WindowFeatures.h" 89 #include "core/page/WindowFeatures.h"
97 #include "core/page/WindowFocusAllowedIndicator.h" 90 #include "core/page/WindowFocusAllowedIndicator.h"
98 #include "core/platform/KURL.h" 91 #include "core/platform/KURL.h"
99 #include "core/platform/PlatformScreen.h" 92 #include "core/platform/PlatformScreen.h"
100 #include "core/platform/SuddenTermination.h" 93 #include "core/platform/SuddenTermination.h"
101 #include "core/platform/graphics/FloatRect.h" 94 #include "core/platform/graphics/FloatRect.h"
102 #include "core/storage/Storage.h" 95 #include "core/storage/Storage.h"
103 #include "core/storage/StorageArea.h" 96 #include "core/storage/StorageArea.h"
104 #include "core/storage/StorageNamespace.h" 97 #include "core/storage/StorageNamespace.h"
105 #include "modules/device_orientation/DeviceMotionController.h" 98 #include "modules/device_orientation/DeviceMotionController.h"
106 #include "modules/notifications/DOMWindowNotifications.h"
107 #include "weborigin/SecurityOrigin.h" 99 #include "weborigin/SecurityOrigin.h"
108 #include "weborigin/SecurityPolicy.h" 100 #include "weborigin/SecurityPolicy.h"
109 101
110 using std::min; 102 using std::min;
111 using std::max; 103 using std::max;
112 104
113 namespace WebCore { 105 namespace WebCore {
114 106
115 class PostMessageTimer : public TimerBase { 107 class PostMessageTimer : public TimerBase {
116 public: 108 public:
(...skipping 1760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1877 1869
1878 Frame* child = frame->tree()->scopedChild(index); 1870 Frame* child = frame->tree()->scopedChild(index);
1879 if (child) 1871 if (child)
1880 return child->document()->domWindow(); 1872 return child->document()->domWindow();
1881 1873
1882 return 0; 1874 return 0;
1883 } 1875 }
1884 1876
1885 1877
1886 } // namespace WebCore 1878 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/DOMSecurityPolicy.cpp ('k') | Source/core/page/DeviceController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698