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

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

Issue 14190004: Absolutify paths to loader/*. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: hmm 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/loader/FrameLoader.h ('k') | Source/core/loader/ImageLoader.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 "ApplicationCacheHost.h"
39 #include "BackForwardController.h" 38 #include "BackForwardController.h"
40 #include "BeforeUnloadEvent.h" 39 #include "BeforeUnloadEvent.h"
41 #include "CachedResourceLoader.h"
42 #include "Chrome.h" 40 #include "Chrome.h"
43 #include "ChromeClient.h" 41 #include "ChromeClient.h"
44 #include "Console.h" 42 #include "Console.h"
45 #include "ContentSecurityPolicy.h" 43 #include "ContentSecurityPolicy.h"
46 #include "DOMImplementation.h" 44 #include "DOMImplementation.h"
47 #include "DOMWindow.h" 45 #include "DOMWindow.h"
48 #include "DOMWrapperWorld.h" 46 #include "DOMWrapperWorld.h"
49 #include "DatabaseManager.h" 47 #include "DatabaseManager.h"
50 #include "Document.h" 48 #include "Document.h"
51 #include "Editor.h" 49 #include "Editor.h"
52 #include "EditorClient.h" 50 #include "EditorClient.h"
53 #include "Element.h" 51 #include "Element.h"
54 #include "Event.h" 52 #include "Event.h"
55 #include "EventHandler.h" 53 #include "EventHandler.h"
56 #include "EventNames.h" 54 #include "EventNames.h"
57 #include "Frame.h" 55 #include "Frame.h"
58 #include "FrameTree.h" 56 #include "FrameTree.h"
59 #include "FrameView.h" 57 #include "FrameView.h"
60 #include "HTMLAnchorElement.h" 58 #include "HTMLAnchorElement.h"
61 #include "HTMLFormElement.h" 59 #include "HTMLFormElement.h"
62 #include "HTMLInputElement.h" 60 #include "HTMLInputElement.h"
63 #include "HTMLNames.h" 61 #include "HTMLNames.h"
64 #include "HTMLObjectElement.h" 62 #include "HTMLObjectElement.h"
65 #include "HTMLParserIdioms.h" 63 #include "HTMLParserIdioms.h"
66 #include "HistoryItem.h" 64 #include "HistoryItem.h"
67 #include "InspectorController.h" 65 #include "InspectorController.h"
68 #include "InspectorInstrumentation.h" 66 #include "InspectorInstrumentation.h"
69 #include "MHTMLArchive.h"
70 #include "MemoryCache.h"
71 #include "Page.h" 67 #include "Page.h"
72 #include "PageTransitionEvent.h" 68 #include "PageTransitionEvent.h"
73 #include "PluginData.h" 69 #include "PluginData.h"
74 #include "PluginDocument.h" 70 #include "PluginDocument.h"
75 #include "ScriptCallStack.h" 71 #include "ScriptCallStack.h"
76 #include "ScriptController.h" 72 #include "ScriptController.h"
77 #include "ScriptSourceCode.h" 73 #include "ScriptSourceCode.h"
78 #include "SecurityOrigin.h" 74 #include "SecurityOrigin.h"
79 #include "SecurityPolicy.h" 75 #include "SecurityPolicy.h"
80 #include "SerializedScriptValue.h" 76 #include "SerializedScriptValue.h"
81 #include "Settings.h" 77 #include "Settings.h"
82 #include "WebCoreMemoryInstrumentation.h" 78 #include "WebCoreMemoryInstrumentation.h"
83 #include "WindowFeatures.h" 79 #include "WindowFeatures.h"
84 #include "XMLDocumentParser.h" 80 #include "XMLDocumentParser.h"
85 #include "core/accessibility/AXObjectCache.h" 81 #include "core/accessibility/AXObjectCache.h"
86 #include "core/loader/DocumentLoadTiming.h" 82 #include "core/loader/DocumentLoadTiming.h"
87 #include "core/loader/DocumentLoader.h" 83 #include "core/loader/DocumentLoader.h"
88 #include "core/loader/FormState.h" 84 #include "core/loader/FormState.h"
89 #include "core/loader/FormSubmission.h" 85 #include "core/loader/FormSubmission.h"
90 #include "core/loader/FrameLoadRequest.h" 86 #include "core/loader/FrameLoadRequest.h"
91 #include "core/loader/FrameLoaderClient.h" 87 #include "core/loader/FrameLoaderClient.h"
92 #include "core/loader/FrameNetworkingContext.h" 88 #include "core/loader/FrameNetworkingContext.h"
93 #include "core/loader/ProgressTracker.h" 89 #include "core/loader/ProgressTracker.h"
94 #include "core/loader/TextResourceDecoder.h" 90 #include "core/loader/TextResourceDecoder.h"
95 #include "core/loader/UniqueIdentifier.h" 91 #include "core/loader/UniqueIdentifier.h"
92 #include "core/loader/appcache/ApplicationCacheHost.h"
93 #include "core/loader/archive/MHTMLArchive.h"
94 #include "core/loader/cache/CachedResourceLoader.h"
95 #include "core/loader/cache/MemoryCache.h"
96 #include "core/platform/Logging.h" 96 #include "core/platform/Logging.h"
97 #include "core/platform/MIMETypeRegistry.h" 97 #include "core/platform/MIMETypeRegistry.h"
98 #include "core/platform/SchemeRegistry.h" 98 #include "core/platform/SchemeRegistry.h"
99 #include "core/platform/ScrollAnimator.h" 99 #include "core/platform/ScrollAnimator.h"
100 #include "core/platform/graphics/FloatRect.h" 100 #include "core/platform/graphics/FloatRect.h"
101 #include "core/platform/network/HTTPParsers.h" 101 #include "core/platform/network/HTTPParsers.h"
102 #include "core/platform/network/ResourceHandle.h" 102 #include "core/platform/network/ResourceHandle.h"
103 #include "core/platform/network/ResourceRequest.h" 103 #include "core/platform/network/ResourceRequest.h"
104 #include "core/platform/text/SegmentedString.h" 104 #include "core/platform/text/SegmentedString.h"
105 #include <wtf/CurrentTime.h> 105 #include <wtf/CurrentTime.h>
(...skipping 2940 matching lines...) Expand 10 before | Expand all | Expand 10 after
3046 FloatRect newWindowRect = DOMWindow::adjustWindowRect(page, windowRect); 3046 FloatRect newWindowRect = DOMWindow::adjustWindowRect(page, windowRect);
3047 3047
3048 page->chrome()->setWindowRect(newWindowRect); 3048 page->chrome()->setWindowRect(newWindowRect);
3049 page->chrome()->show(); 3049 page->chrome()->show();
3050 3050
3051 created = true; 3051 created = true;
3052 return frame; 3052 return frame;
3053 } 3053 }
3054 3054
3055 } // namespace WebCore 3055 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/loader/FrameLoader.h ('k') | Source/core/loader/ImageLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698