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

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

Issue 13976008: Remove more #includes from Frame.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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/inspector/InspectorPageAgent.h ('k') | Source/core/page/DOMWindow.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) 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 21 matching lines...) Expand all
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 "FrameLoader.h" 36 #include "FrameLoader.h"
37 37
38 #include "AXObjectCache.h" 38 #include "AXObjectCache.h"
39 #include "ApplicationCacheHost.h" 39 #include "ApplicationCacheHost.h"
40 #include "BackForwardController.h" 40 #include "BackForwardController.h"
41 #include "BeforeUnloadEvent.h" 41 #include "BeforeUnloadEvent.h"
42 #include "MemoryCache.h"
43 #include "CachedPage.h" 42 #include "CachedPage.h"
44 #include "CachedResourceLoader.h" 43 #include "CachedResourceLoader.h"
45 #include "Chrome.h" 44 #include "Chrome.h"
46 #include "ChromeClient.h" 45 #include "ChromeClient.h"
47 #include "Console.h" 46 #include "Console.h"
48 #include "ContentSecurityPolicy.h" 47 #include "ContentSecurityPolicy.h"
49 #include "DOMImplementation.h" 48 #include "DOMImplementation.h"
50 #include "DOMWindow.h" 49 #include "DOMWindow.h"
51 #include "DatabaseManager.h" 50 #include "DatabaseManager.h"
52 #include "Document.h" 51 #include "Document.h"
53 #include "DocumentLoadTiming.h" 52 #include "DocumentLoadTiming.h"
54 #include "DocumentLoader.h" 53 #include "DocumentLoader.h"
55 #include "Editor.h" 54 #include "Editor.h"
56 #include "EditorClient.h" 55 #include "EditorClient.h"
57 #include "Element.h" 56 #include "Element.h"
58 #include "Event.h" 57 #include "Event.h"
58 #include "EventHandler.h"
59 #include "EventNames.h" 59 #include "EventNames.h"
60 #include "FloatRect.h" 60 #include "FloatRect.h"
61 #include "FormState.h" 61 #include "FormState.h"
62 #include "FormSubmission.h" 62 #include "FormSubmission.h"
63 #include "Frame.h" 63 #include "Frame.h"
64 #include "FrameLoadRequest.h" 64 #include "FrameLoadRequest.h"
65 #include "FrameLoaderClient.h" 65 #include "FrameLoaderClient.h"
66 #include "FrameNetworkingContext.h" 66 #include "FrameNetworkingContext.h"
67 #include "FrameTree.h" 67 #include "FrameTree.h"
68 #include "FrameView.h" 68 #include "FrameView.h"
69 #include "HTMLAnchorElement.h" 69 #include "HTMLAnchorElement.h"
70 #include "HTMLFormElement.h" 70 #include "HTMLFormElement.h"
71 #include "HTMLInputElement.h" 71 #include "HTMLInputElement.h"
72 #include "HTMLNames.h" 72 #include "HTMLNames.h"
73 #include "HTMLObjectElement.h" 73 #include "HTMLObjectElement.h"
74 #include "HTMLParserIdioms.h" 74 #include "HTMLParserIdioms.h"
75 #include "HTTPParsers.h" 75 #include "HTTPParsers.h"
76 #include "HistoryItem.h" 76 #include "HistoryItem.h"
77 #include "InspectorController.h" 77 #include "InspectorController.h"
78 #include "InspectorInstrumentation.h" 78 #include "InspectorInstrumentation.h"
79 #include "Logging.h" 79 #include "Logging.h"
80 #include "MHTMLArchive.h" 80 #include "MHTMLArchive.h"
81 #include "MIMETypeRegistry.h" 81 #include "MIMETypeRegistry.h"
82 #include "MemoryCache.h"
82 #include "Page.h" 83 #include "Page.h"
83 #include "PageCache.h" 84 #include "PageCache.h"
84 #include "PageTransitionEvent.h" 85 #include "PageTransitionEvent.h"
85 #include "PluginData.h" 86 #include "PluginData.h"
86 #include "PluginDocument.h" 87 #include "PluginDocument.h"
87 #include "PolicyChecker.h" 88 #include "PolicyChecker.h"
88 #include "ProgressTracker.h" 89 #include "ProgressTracker.h"
89 #include "ResourceHandle.h" 90 #include "ResourceHandle.h"
90 #include "ResourceRequest.h" 91 #include "ResourceRequest.h"
91 #include "SchemeRegistry.h" 92 #include "SchemeRegistry.h"
(...skipping 3169 matching lines...) Expand 10 before | Expand all | Expand 10 after
3261 FloatRect newWindowRect = DOMWindow::adjustWindowRect(page, windowRect); 3262 FloatRect newWindowRect = DOMWindow::adjustWindowRect(page, windowRect);
3262 3263
3263 page->chrome()->setWindowRect(newWindowRect); 3264 page->chrome()->setWindowRect(newWindowRect);
3264 page->chrome()->show(); 3265 page->chrome()->show();
3265 3266
3266 created = true; 3267 created = true;
3267 return frame; 3268 return frame;
3268 } 3269 }
3269 3270
3270 } // namespace WebCore 3271 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorPageAgent.h ('k') | Source/core/page/DOMWindow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698