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

Side by Side Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: rebase 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 #include "core/dom/shadow/ShadowRoot.h" 107 #include "core/dom/shadow/ShadowRoot.h"
108 #include "core/editing/EditingUtilities.h" 108 #include "core/editing/EditingUtilities.h"
109 #include "core/editing/Editor.h" 109 #include "core/editing/Editor.h"
110 #include "core/editing/FrameSelection.h" 110 #include "core/editing/FrameSelection.h"
111 #include "core/editing/InputMethodController.h" 111 #include "core/editing/InputMethodController.h"
112 #include "core/editing/PlainTextRange.h" 112 #include "core/editing/PlainTextRange.h"
113 #include "core/editing/TextAffinity.h" 113 #include "core/editing/TextAffinity.h"
114 #include "core/editing/iterators/TextIterator.h" 114 #include "core/editing/iterators/TextIterator.h"
115 #include "core/editing/serializers/Serialization.h" 115 #include "core/editing/serializers/Serialization.h"
116 #include "core/editing/spellcheck/SpellChecker.h" 116 #include "core/editing/spellcheck/SpellChecker.h"
117 #include "core/fetch/ResourceFetcher.h"
118 #include "core/fetch/SubstituteData.h"
119 #include "core/frame/FrameHost.h" 117 #include "core/frame/FrameHost.h"
120 #include "core/frame/FrameView.h" 118 #include "core/frame/FrameView.h"
121 #include "core/frame/LocalDOMWindow.h" 119 #include "core/frame/LocalDOMWindow.h"
122 #include "core/frame/PageScaleConstraintsSet.h" 120 #include "core/frame/PageScaleConstraintsSet.h"
123 #include "core/frame/RemoteFrame.h" 121 #include "core/frame/RemoteFrame.h"
124 #include "core/frame/Settings.h" 122 #include "core/frame/Settings.h"
125 #include "core/frame/UseCounter.h" 123 #include "core/frame/UseCounter.h"
126 #include "core/frame/VisualViewport.h" 124 #include "core/frame/VisualViewport.h"
127 #include "core/html/HTMLAnchorElement.h" 125 #include "core/html/HTMLAnchorElement.h"
128 #include "core/html/HTMLCollection.h" 126 #include "core/html/HTMLCollection.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 #include "platform/fonts/FontCache.h" 163 #include "platform/fonts/FontCache.h"
166 #include "platform/graphics/GraphicsContext.h" 164 #include "platform/graphics/GraphicsContext.h"
167 #include "platform/graphics/GraphicsLayerClient.h" 165 #include "platform/graphics/GraphicsLayerClient.h"
168 #include "platform/graphics/paint/ClipRecorder.h" 166 #include "platform/graphics/paint/ClipRecorder.h"
169 #include "platform/graphics/paint/DisplayItemCacheSkipper.h" 167 #include "platform/graphics/paint/DisplayItemCacheSkipper.h"
170 #include "platform/graphics/paint/DrawingRecorder.h" 168 #include "platform/graphics/paint/DrawingRecorder.h"
171 #include "platform/graphics/paint/SkPictureBuilder.h" 169 #include "platform/graphics/paint/SkPictureBuilder.h"
172 #include "platform/graphics/skia/SkiaUtils.h" 170 #include "platform/graphics/skia/SkiaUtils.h"
173 #include "platform/heap/Handle.h" 171 #include "platform/heap/Handle.h"
174 #include "platform/instrumentation/tracing/TraceEvent.h" 172 #include "platform/instrumentation/tracing/TraceEvent.h"
173 #include "platform/loader/fetch/ResourceFetcher.h"
174 #include "platform/loader/fetch/SubstituteData.h"
175 #include "platform/network/ResourceRequest.h" 175 #include "platform/network/ResourceRequest.h"
176 #include "platform/scroll/ScrollTypes.h" 176 #include "platform/scroll/ScrollTypes.h"
177 #include "platform/scroll/ScrollbarTheme.h" 177 #include "platform/scroll/ScrollbarTheme.h"
178 #include "platform/weborigin/KURL.h" 178 #include "platform/weborigin/KURL.h"
179 #include "platform/weborigin/SchemeRegistry.h" 179 #include "platform/weborigin/SchemeRegistry.h"
180 #include "platform/weborigin/SecurityPolicy.h" 180 #include "platform/weborigin/SecurityPolicy.h"
181 #include "public/platform/InterfaceProvider.h" 181 #include "public/platform/InterfaceProvider.h"
182 #include "public/platform/InterfaceRegistry.h" 182 #include "public/platform/InterfaceRegistry.h"
183 #include "public/platform/WebDoubleSize.h" 183 #include "public/platform/WebDoubleSize.h"
184 #include "public/platform/WebFloatPoint.h" 184 #include "public/platform/WebFloatPoint.h"
(...skipping 2169 matching lines...) Expand 10 before | Expand all | Expand 10 after
2354 ->frameScheduler() 2354 ->frameScheduler()
2355 ->unthrottledTaskRunner() 2355 ->unthrottledTaskRunner()
2356 ->toSingleThreadTaskRunner(); 2356 ->toSingleThreadTaskRunner();
2357 } 2357 }
2358 2358
2359 WebInputMethodControllerImpl* WebLocalFrameImpl::inputMethodController() const { 2359 WebInputMethodControllerImpl* WebLocalFrameImpl::inputMethodController() const {
2360 return m_inputMethodController.get(); 2360 return m_inputMethodController.get();
2361 } 2361 }
2362 2362
2363 } // namespace blink 2363 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698