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

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

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) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2012 Google Inc. All rights reserved. 4 * Copyright (C) 2012 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 9 *
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 16 matching lines...) Expand all
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef FrameLoaderClient_h 31 #ifndef FrameLoaderClient_h
32 #define FrameLoaderClient_h 32 #define FrameLoaderClient_h
33 33
34 #include "core/CoreExport.h" 34 #include "core/CoreExport.h"
35 #include "core/dom/Document.h" 35 #include "core/dom/Document.h"
36 #include "core/dom/IconURL.h" 36 #include "core/dom/IconURL.h"
37 #include "core/fetch/ResourceLoaderOptions.h"
38 #include "core/frame/FrameClient.h" 37 #include "core/frame/FrameClient.h"
39 #include "core/frame/FrameTypes.h" 38 #include "core/frame/FrameTypes.h"
40 #include "core/html/LinkResource.h" 39 #include "core/html/LinkResource.h"
41 #include "core/loader/FrameLoadRequest.h" 40 #include "core/loader/FrameLoadRequest.h"
42 #include "core/loader/FrameLoaderTypes.h" 41 #include "core/loader/FrameLoaderTypes.h"
43 #include "core/loader/NavigationPolicy.h" 42 #include "core/loader/NavigationPolicy.h"
44 #include "platform/heap/Handle.h" 43 #include "platform/heap/Handle.h"
44 #include "platform/loader/fetch/ResourceLoaderOptions.h"
45 #include "platform/network/ContentSecurityPolicyParsers.h" 45 #include "platform/network/ContentSecurityPolicyParsers.h"
46 #include "platform/network/ResourceLoadPriority.h" 46 #include "platform/network/ResourceLoadPriority.h"
47 #include "platform/weborigin/Referrer.h" 47 #include "platform/weborigin/Referrer.h"
48 #include "public/platform/WebEffectiveConnectionType.h" 48 #include "public/platform/WebEffectiveConnectionType.h"
49 #include "public/platform/WebFeaturePolicy.h" 49 #include "public/platform/WebFeaturePolicy.h"
50 #include "public/platform/WebInsecureRequestPolicy.h" 50 #include "public/platform/WebInsecureRequestPolicy.h"
51 #include "public/platform/WebLoadingBehaviorFlag.h" 51 #include "public/platform/WebLoadingBehaviorFlag.h"
52 #include "wtf/Forward.h" 52 #include "wtf/Forward.h"
53 #include "wtf/Vector.h" 53 #include "wtf/Vector.h"
54 #include <memory> 54 #include <memory>
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); } 338 virtual KURL overrideFlashEmbedWithHTML(const KURL&) { return KURL(); }
339 339
340 virtual BlameContext* frameBlameContext() { return nullptr; } 340 virtual BlameContext* frameBlameContext() { return nullptr; }
341 341
342 virtual void setHasReceivedUserGesture() {} 342 virtual void setHasReceivedUserGesture() {}
343 }; 343 };
344 344
345 } // namespace blink 345 } // namespace blink
346 346
347 #endif // FrameLoaderClient_h 347 #endif // FrameLoaderClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoader.cpp ('k') | third_party/WebKit/Source/core/loader/HttpEquiv.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698