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

Side by Side Diff: third_party/WebKit/Source/core/loader/DocumentLoader.h

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) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 15 matching lines...) Expand all
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29 29
30 #ifndef DocumentLoader_h 30 #ifndef DocumentLoader_h
31 #define DocumentLoader_h 31 #define DocumentLoader_h
32 32
33 #include "core/CoreExport.h" 33 #include "core/CoreExport.h"
34 #include "core/dom/ViewportDescription.h" 34 #include "core/dom/ViewportDescription.h"
35 #include "core/dom/WeakIdentifierMap.h" 35 #include "core/dom/WeakIdentifierMap.h"
36 #include "core/fetch/ClientHintsPreferences.h"
37 #include "core/fetch/RawResource.h"
38 #include "core/fetch/ResourceLoaderOptions.h"
39 #include "core/fetch/SubstituteData.h"
40 #include "core/frame/FrameTypes.h" 36 #include "core/frame/FrameTypes.h"
41 #include "core/frame/csp/ContentSecurityPolicy.h" 37 #include "core/frame/csp/ContentSecurityPolicy.h"
42 #include "core/loader/DocumentLoadTiming.h" 38 #include "core/loader/DocumentLoadTiming.h"
43 #include "core/loader/DocumentWriter.h" 39 #include "core/loader/DocumentWriter.h"
44 #include "core/loader/FrameLoaderTypes.h" 40 #include "core/loader/FrameLoaderTypes.h"
45 #include "core/loader/LinkLoader.h" 41 #include "core/loader/LinkLoader.h"
46 #include "core/loader/NavigationPolicy.h" 42 #include "core/loader/NavigationPolicy.h"
47 #include "platform/SharedBuffer.h" 43 #include "platform/SharedBuffer.h"
44 #include "platform/loader/fetch/ClientHintsPreferences.h"
45 #include "platform/loader/fetch/RawResource.h"
46 #include "platform/loader/fetch/ResourceLoaderOptions.h"
47 #include "platform/loader/fetch/SubstituteData.h"
48 #include "platform/network/ResourceError.h" 48 #include "platform/network/ResourceError.h"
49 #include "platform/network/ResourceRequest.h" 49 #include "platform/network/ResourceRequest.h"
50 #include "platform/network/ResourceResponse.h" 50 #include "platform/network/ResourceResponse.h"
51 #include "public/platform/WebLoadingBehaviorFlag.h" 51 #include "public/platform/WebLoadingBehaviorFlag.h"
52 #include "wtf/HashSet.h" 52 #include "wtf/HashSet.h"
53 #include "wtf/RefPtr.h" 53 #include "wtf/RefPtr.h"
54 #include <memory> 54 #include <memory>
55 55
56 namespace blink { 56 namespace blink {
57 57
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 // Used to protect against reentrancy into dataReceived(). 278 // Used to protect against reentrancy into dataReceived().
279 bool m_inDataReceived; 279 bool m_inDataReceived;
280 RefPtr<SharedBuffer> m_dataBuffer; 280 RefPtr<SharedBuffer> m_dataBuffer;
281 }; 281 };
282 282
283 DECLARE_WEAK_IDENTIFIER_MAP(DocumentLoader); 283 DECLARE_WEAK_IDENTIFIER_MAP(DocumentLoader);
284 284
285 } // namespace blink 285 } // namespace blink
286 286
287 #endif // DocumentLoader_h 287 #endif // DocumentLoader_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698