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

Side by Side Diff: Source/core/loader/FrameLoader.cpp

Issue 17569013: Remove unused includes from core/inspector, core/loader and core/page (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased Created 7 years, 5 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/loader/DocumentWriter.cpp ('k') | Source/core/loader/HistoryController.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) 2008 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com>
6 * Copyright (C) Research In Motion Limited 2009. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2009. All rights reserved.
7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com> 7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com>
8 * Copyright (C) 2011 Google Inc. All rights reserved. 8 * Copyright (C) 2011 Google Inc. All rights reserved.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
(...skipping 17 matching lines...) Expand all
28 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 28 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 29 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
30 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 30 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */ 33 */
34 34
35 #include "config.h" 35 #include "config.h"
36 #include "core/loader/FrameLoader.h" 36 #include "core/loader/FrameLoader.h"
37 37
38 #include <wtf/CurrentTime.h>
39 #include <wtf/MemoryInstrumentationHashSet.h>
40 #include <wtf/StdLibExtras.h>
41 #include <wtf/text/CString.h>
42 #include <wtf/text/WTFString.h>
43 #include "HTMLNames.h" 38 #include "HTMLNames.h"
44 #include "SVGNames.h"
45 #include "bindings/v8/DOMWrapperWorld.h" 39 #include "bindings/v8/DOMWrapperWorld.h"
46 #include "bindings/v8/ScriptController.h" 40 #include "bindings/v8/ScriptController.h"
47 #include "bindings/v8/ScriptSourceCode.h"
48 #include "bindings/v8/SerializedScriptValue.h" 41 #include "bindings/v8/SerializedScriptValue.h"
49 #include "core/accessibility/AXObjectCache.h" 42 #include "core/accessibility/AXObjectCache.h"
50 #include "core/dom/BeforeUnloadEvent.h" 43 #include "core/dom/BeforeUnloadEvent.h"
51 #include "core/dom/DOMImplementation.h"
52 #include "core/dom/Document.h" 44 #include "core/dom/Document.h"
53 #include "core/dom/Element.h" 45 #include "core/dom/Element.h"
54 #include "core/dom/Event.h" 46 #include "core/dom/Event.h"
55 #include "core/dom/EventNames.h" 47 #include "core/dom/EventNames.h"
56 #include "core/dom/PageTransitionEvent.h" 48 #include "core/dom/PageTransitionEvent.h"
57 #include "core/dom/WebCoreMemoryInstrumentation.h" 49 #include "core/dom/WebCoreMemoryInstrumentation.h"
58 #include "core/editing/Editor.h" 50 #include "core/editing/Editor.h"
59 #include "core/history/BackForwardController.h" 51 #include "core/history/BackForwardController.h"
60 #include "core/history/HistoryItem.h" 52 #include "core/history/HistoryItem.h"
61 #include "core/html/HTMLAnchorElement.h"
62 #include "core/html/HTMLFormElement.h" 53 #include "core/html/HTMLFormElement.h"
63 #include "core/html/HTMLInputElement.h" 54 #include "core/html/HTMLInputElement.h"
64 #include "core/html/HTMLObjectElement.h" 55 #include "core/html/HTMLObjectElement.h"
65 #include "core/html/PluginDocument.h"
66 #include "core/html/parser/HTMLParserIdioms.h" 56 #include "core/html/parser/HTMLParserIdioms.h"
67 #include "core/inspector/InspectorController.h" 57 #include "core/inspector/InspectorController.h"
68 #include "core/inspector/InspectorInstrumentation.h" 58 #include "core/inspector/InspectorInstrumentation.h"
69 #include "core/inspector/ScriptCallStack.h"
70 #include "core/loader/DocumentLoadTiming.h" 59 #include "core/loader/DocumentLoadTiming.h"
71 #include "core/loader/DocumentLoader.h" 60 #include "core/loader/DocumentLoader.h"
72 #include "core/loader/FormState.h" 61 #include "core/loader/FormState.h"
73 #include "core/loader/FormSubmission.h" 62 #include "core/loader/FormSubmission.h"
74 #include "core/loader/FrameLoadRequest.h" 63 #include "core/loader/FrameLoadRequest.h"
75 #include "core/loader/FrameLoaderClient.h" 64 #include "core/loader/FrameLoaderClient.h"
76 #include "core/loader/IconController.h" 65 #include "core/loader/IconController.h"
77 #include "core/loader/ProgressTracker.h" 66 #include "core/loader/ProgressTracker.h"
78 #include "core/loader/TextResourceDecoder.h"
79 #include "core/loader/UniqueIdentifier.h" 67 #include "core/loader/UniqueIdentifier.h"
80 #include "core/loader/appcache/ApplicationCacheHost.h" 68 #include "core/loader/appcache/ApplicationCacheHost.h"
81 #include "core/loader/cache/CachedResourceLoader.h" 69 #include "core/loader/cache/CachedResourceLoader.h"
82 #include "core/loader/cache/MemoryCache.h"
83 #include "core/page/Chrome.h" 70 #include "core/page/Chrome.h"
84 #include "core/page/ChromeClient.h" 71 #include "core/page/ChromeClient.h"
85 #include "core/page/Console.h"
86 #include "core/page/ContentSecurityPolicy.h" 72 #include "core/page/ContentSecurityPolicy.h"
87 #include "core/page/DOMWindow.h" 73 #include "core/page/DOMWindow.h"
88 #include "core/page/EditorClient.h"
89 #include "core/page/EventHandler.h" 74 #include "core/page/EventHandler.h"
90 #include "core/page/Frame.h" 75 #include "core/page/Frame.h"
91 #include "core/page/FrameTree.h" 76 #include "core/page/FrameTree.h"
92 #include "core/page/FrameView.h" 77 #include "core/page/FrameView.h"
93 #include "core/page/Page.h" 78 #include "core/page/Page.h"
94 #include "core/page/Settings.h" 79 #include "core/page/Settings.h"
95 #include "core/page/WindowFeatures.h" 80 #include "core/page/WindowFeatures.h"
96 #include "core/platform/Logging.h" 81 #include "core/platform/Logging.h"
97 #include "core/platform/MIMETypeFromURL.h"
98 #include "core/platform/MIMETypeRegistry.h"
99 #include "core/platform/ScrollAnimator.h" 82 #include "core/platform/ScrollAnimator.h"
100 #include "core/platform/graphics/FloatRect.h" 83 #include "core/platform/graphics/FloatRect.h"
101 #include "core/platform/network/HTTPParsers.h" 84 #include "core/platform/network/HTTPParsers.h"
102 #include "core/platform/network/ResourceHandle.h" 85 #include "core/platform/network/ResourceHandle.h"
103 #include "core/platform/network/ResourceRequest.h" 86 #include "core/platform/network/ResourceRequest.h"
104 #include "core/platform/text/SegmentedString.h"
105 #include "core/plugins/PluginData.h"
106 #include "core/svg/SVGDocument.h"
107 #include "core/svg/SVGLocatable.h"
108 #include "core/svg/SVGPreserveAspectRatio.h"
109 #include "core/svg/SVGSVGElement.h"
110 #include "core/svg/SVGViewElement.h"
111 #include "core/svg/SVGViewSpec.h"
112 #include "core/xml/parser/XMLDocumentParser.h" 87 #include "core/xml/parser/XMLDocumentParser.h"
113 #include "modules/webdatabase/DatabaseManager.h" 88 #include "modules/webdatabase/DatabaseManager.h"
114 #include "weborigin/SchemeRegistry.h"
115 #include "weborigin/SecurityOrigin.h" 89 #include "weborigin/SecurityOrigin.h"
116 #include "weborigin/SecurityPolicy.h" 90 #include "weborigin/SecurityPolicy.h"
117 91 #include "wtf/MemoryInstrumentationHashSet.h"
92 #include "wtf/text/CString.h"
93 #include "wtf/text/WTFString.h"
118 94
119 namespace WebCore { 95 namespace WebCore {
120 96
121 using namespace HTMLNames; 97 using namespace HTMLNames;
122 using namespace SVGNames;
123 98
124 static const char defaultAcceptHeader[] = "text/html,application/xhtml+xml,appli cation/xml;q=0.9,*/*;q=0.8"; 99 static const char defaultAcceptHeader[] = "text/html,application/xhtml+xml,appli cation/xml;q=0.9,*/*;q=0.8";
125 100
126 bool isBackForwardLoadType(FrameLoadType type) 101 bool isBackForwardLoadType(FrameLoadType type)
127 { 102 {
128 return type == FrameLoadTypeBackForward; 103 return type == FrameLoadTypeBackForward;
129 } 104 }
130 105
131 // This is not in the FrameLoader class to emphasize that it does not depend on 106 // This is not in the FrameLoader class to emphasize that it does not depend on
132 // private FrameLoader data, and to avoid increasing the number of public functi ons 107 // private FrameLoader data, and to avoid increasing the number of public functi ons
(...skipping 2419 matching lines...) Expand 10 before | Expand all | Expand 10 after
2552 FloatRect newWindowRect = DOMWindow::adjustWindowRect(page, windowRect); 2527 FloatRect newWindowRect = DOMWindow::adjustWindowRect(page, windowRect);
2553 2528
2554 page->chrome().setWindowRect(newWindowRect); 2529 page->chrome().setWindowRect(newWindowRect);
2555 page->chrome().show(); 2530 page->chrome().show();
2556 2531
2557 created = true; 2532 created = true;
2558 return frame; 2533 return frame;
2559 } 2534 }
2560 2535
2561 } // namespace WebCore 2536 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/loader/DocumentWriter.cpp ('k') | Source/core/loader/HistoryController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698