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

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: another try Created 3 years, 11 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All
7 * rights reserved. 7 * rights reserved.
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 #include "core/editing/spellcheck/SpellChecker.h" 128 #include "core/editing/spellcheck/SpellChecker.h"
129 #include "core/events/BeforeUnloadEvent.h" 129 #include "core/events/BeforeUnloadEvent.h"
130 #include "core/events/Event.h" 130 #include "core/events/Event.h"
131 #include "core/events/EventFactory.h" 131 #include "core/events/EventFactory.h"
132 #include "core/events/EventListener.h" 132 #include "core/events/EventListener.h"
133 #include "core/events/HashChangeEvent.h" 133 #include "core/events/HashChangeEvent.h"
134 #include "core/events/PageTransitionEvent.h" 134 #include "core/events/PageTransitionEvent.h"
135 #include "core/events/ScopedEventQueue.h" 135 #include "core/events/ScopedEventQueue.h"
136 #include "core/events/VisualViewportResizeEvent.h" 136 #include "core/events/VisualViewportResizeEvent.h"
137 #include "core/events/VisualViewportScrollEvent.h" 137 #include "core/events/VisualViewportScrollEvent.h"
138 #include "core/fetch/ResourceFetcher.h"
139 #include "core/frame/DOMTimer.h" 138 #include "core/frame/DOMTimer.h"
140 #include "core/frame/DOMVisualViewport.h" 139 #include "core/frame/DOMVisualViewport.h"
141 #include "core/frame/EventHandlerRegistry.h" 140 #include "core/frame/EventHandlerRegistry.h"
142 #include "core/frame/FrameConsole.h" 141 #include "core/frame/FrameConsole.h"
143 #include "core/frame/FrameHost.h" 142 #include "core/frame/FrameHost.h"
144 #include "core/frame/FrameView.h" 143 #include "core/frame/FrameView.h"
145 #include "core/frame/History.h" 144 #include "core/frame/History.h"
146 #include "core/frame/HostsUsingFeatures.h" 145 #include "core/frame/HostsUsingFeatures.h"
147 #include "core/frame/LocalDOMWindow.h" 146 #include "core/frame/LocalDOMWindow.h"
148 #include "core/frame/LocalFrame.h" 147 #include "core/frame/LocalFrame.h"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 #include "platform/EventDispatchForbiddenScope.h" 224 #include "platform/EventDispatchForbiddenScope.h"
226 #include "platform/Histogram.h" 225 #include "platform/Histogram.h"
227 #include "platform/InstanceCounters.h" 226 #include "platform/InstanceCounters.h"
228 #include "platform/Language.h" 227 #include "platform/Language.h"
229 #include "platform/LengthFunctions.h" 228 #include "platform/LengthFunctions.h"
230 #include "platform/PluginScriptForbiddenScope.h" 229 #include "platform/PluginScriptForbiddenScope.h"
231 #include "platform/RuntimeEnabledFeatures.h" 230 #include "platform/RuntimeEnabledFeatures.h"
232 #include "platform/ScriptForbiddenScope.h" 231 #include "platform/ScriptForbiddenScope.h"
233 #include "platform/WebFrameScheduler.h" 232 #include "platform/WebFrameScheduler.h"
234 #include "platform/instrumentation/tracing/TraceEvent.h" 233 #include "platform/instrumentation/tracing/TraceEvent.h"
234 #include "platform/loader/fetch/ResourceFetcher.h"
235 #include "platform/network/ContentSecurityPolicyParsers.h" 235 #include "platform/network/ContentSecurityPolicyParsers.h"
236 #include "platform/network/HTTPParsers.h" 236 #include "platform/network/HTTPParsers.h"
237 #include "platform/scroll/Scrollbar.h" 237 #include "platform/scroll/Scrollbar.h"
238 #include "platform/scroll/ScrollbarTheme.h" 238 #include "platform/scroll/ScrollbarTheme.h"
239 #include "platform/text/PlatformLocale.h" 239 #include "platform/text/PlatformLocale.h"
240 #include "platform/text/SegmentedString.h" 240 #include "platform/text/SegmentedString.h"
241 #include "platform/weborigin/OriginAccessEntry.h" 241 #include "platform/weborigin/OriginAccessEntry.h"
242 #include "platform/weborigin/SchemeRegistry.h" 242 #include "platform/weborigin/SchemeRegistry.h"
243 #include "platform/weborigin/SecurityOrigin.h" 243 #include "platform/weborigin/SecurityOrigin.h"
244 #include "public/platform/InterfaceProvider.h" 244 #include "public/platform/InterfaceProvider.h"
(...skipping 6290 matching lines...) Expand 10 before | Expand all | Expand 10 after
6535 } 6535 }
6536 6536
6537 void showLiveDocumentInstances() { 6537 void showLiveDocumentInstances() {
6538 WeakDocumentSet& set = liveDocumentSet(); 6538 WeakDocumentSet& set = liveDocumentSet();
6539 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6539 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6540 for (Document* document : set) 6540 for (Document* document : set)
6541 fprintf(stderr, "- Document %p URL: %s\n", document, 6541 fprintf(stderr, "- Document %p URL: %s\n", document,
6542 document->url().getString().utf8().data()); 6542 document->url().getString().utf8().data());
6543 } 6543 }
6544 #endif 6544 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.h ('k') | third_party/WebKit/Source/core/dom/ExecutionContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698