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

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

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu 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/FrameNetworkingContext.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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 #include "FrameView.h" 66 #include "FrameView.h"
67 #include "HTMLAnchorElement.h" 67 #include "HTMLAnchorElement.h"
68 #include "HTMLFormElement.h" 68 #include "HTMLFormElement.h"
69 #include "HTMLInputElement.h" 69 #include "HTMLInputElement.h"
70 #include "HTMLNames.h" 70 #include "HTMLNames.h"
71 #include "HTMLObjectElement.h" 71 #include "HTMLObjectElement.h"
72 #include "HTMLParserIdioms.h" 72 #include "HTMLParserIdioms.h"
73 #include "HistoryItem.h" 73 #include "HistoryItem.h"
74 #include "InspectorController.h" 74 #include "InspectorController.h"
75 #include "InspectorInstrumentation.h" 75 #include "InspectorInstrumentation.h"
76 #include "Logging.h"
77 #include "MHTMLArchive.h" 76 #include "MHTMLArchive.h"
78 #include "MIMETypeRegistry.h"
79 #include "MemoryCache.h" 77 #include "MemoryCache.h"
80 #include "Page.h" 78 #include "Page.h"
81 #include "PageTransitionEvent.h" 79 #include "PageTransitionEvent.h"
82 #include "PluginData.h" 80 #include "PluginData.h"
83 #include "PluginDocument.h" 81 #include "PluginDocument.h"
84 #include "ProgressTracker.h" 82 #include "ProgressTracker.h"
85 #include "SchemeRegistry.h"
86 #include "ScriptCallStack.h" 83 #include "ScriptCallStack.h"
87 #include "ScriptController.h" 84 #include "ScriptController.h"
88 #include "ScriptSourceCode.h" 85 #include "ScriptSourceCode.h"
89 #include "ScrollAnimator.h"
90 #include "SecurityOrigin.h" 86 #include "SecurityOrigin.h"
91 #include "SecurityPolicy.h" 87 #include "SecurityPolicy.h"
92 #include "SerializedScriptValue.h" 88 #include "SerializedScriptValue.h"
93 #include "Settings.h" 89 #include "Settings.h"
94 #include "TextResourceDecoder.h" 90 #include "TextResourceDecoder.h"
95 #include "WebCoreMemoryInstrumentation.h" 91 #include "WebCoreMemoryInstrumentation.h"
96 #include "WindowFeatures.h" 92 #include "WindowFeatures.h"
97 #include "XMLDocumentParser.h" 93 #include "XMLDocumentParser.h"
98 #include "core/accessibility/AXObjectCache.h" 94 #include "core/accessibility/AXObjectCache.h"
99 #include "core/loader/UniqueIdentifier.h" 95 #include "core/loader/UniqueIdentifier.h"
96 #include "core/platform/Logging.h"
97 #include "core/platform/MIMETypeRegistry.h"
98 #include "core/platform/SchemeRegistry.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>
106 #include <wtf/MemoryInstrumentationHashSet.h> 106 #include <wtf/MemoryInstrumentationHashSet.h>
107 #include <wtf/StdLibExtras.h> 107 #include <wtf/StdLibExtras.h>
108 #include <wtf/text/CString.h> 108 #include <wtf/text/CString.h>
109 #include <wtf/text/WTFString.h> 109 #include <wtf/text/WTFString.h>
(...skipping 2936 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/FrameNetworkingContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698