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

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

Issue 2842253002: Move ReportLocalLoadFailed to ExecutionContext (Closed)
Patch Set: Revert ResourceLoader changes, handle main resource redirect in DocumentLoader Created 3 years, 6 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 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BaseFetchContext_h 5 #ifndef BaseFetchContext_h
6 #define BaseFetchContext_h 6 #define BaseFetchContext_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/frame/UseCounter.h" 9 #include "core/frame/UseCounter.h"
10 #include "core/frame/csp/ContentSecurityPolicy.h" 10 #include "core/frame/csp/ContentSecurityPolicy.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 virtual SubresourceFilter* GetSubresourceFilter() const = 0; 60 virtual SubresourceFilter* GetSubresourceFilter() const = 0;
61 virtual SecurityContext* GetParentSecurityContext() const = 0; 61 virtual SecurityContext* GetParentSecurityContext() const = 0;
62 62
63 // Note: subclasses are expected to override following methods. 63 // Note: subclasses are expected to override following methods.
64 // Used in the default implementation for CanRequest, CanFollowRedirect 64 // Used in the default implementation for CanRequest, CanFollowRedirect
65 // and AllowResponse. 65 // and AllowResponse.
66 virtual bool ShouldBlockRequestByInspector(const ResourceRequest&) const = 0; 66 virtual bool ShouldBlockRequestByInspector(const ResourceRequest&) const = 0;
67 virtual void DispatchDidBlockRequest(const ResourceRequest&, 67 virtual void DispatchDidBlockRequest(const ResourceRequest&,
68 const FetchInitiatorInfo&, 68 const FetchInitiatorInfo&,
69 ResourceRequestBlockedReason) const = 0; 69 ResourceRequestBlockedReason) const = 0;
70 // TODO(kinuko): Consider implementing this on ExecutionContext and
71 // remove this virtual method.
72 virtual void ReportLocalLoadFailed(const KURL&) const = 0;
73 virtual bool ShouldBypassMainWorldCSP() const = 0; 70 virtual bool ShouldBypassMainWorldCSP() const = 0;
74 virtual bool IsSVGImageChromeClient() const = 0; 71 virtual bool IsSVGImageChromeClient() const = 0;
75 virtual void CountUsage(UseCounter::Feature) const = 0; 72 virtual void CountUsage(UseCounter::Feature) const = 0;
76 virtual void CountDeprecation(UseCounter::Feature) const = 0; 73 virtual void CountDeprecation(UseCounter::Feature) const = 0;
77 virtual bool ShouldBlockFetchByMixedContentCheck( 74 virtual bool ShouldBlockFetchByMixedContentCheck(
78 const ResourceRequest&, 75 const ResourceRequest&,
79 const KURL&, 76 const KURL&,
80 SecurityViolationReportingPolicy) const = 0; 77 SecurityViolationReportingPolicy) const = 0;
81 78
82 // Utility method that can be used to implement other methods. 79 // Utility method that can be used to implement other methods.
(...skipping 20 matching lines...) Expand all
103 100
104 // FIXME: Oilpan: Ideally this should just be a traced Member but that will 101 // FIXME: Oilpan: Ideally this should just be a traced Member but that will
105 // currently leak because ComputedStyle and its data are not on the heap. 102 // currently leak because ComputedStyle and its data are not on the heap.
106 // See crbug.com/383860 for details. 103 // See crbug.com/383860 for details.
107 WeakMember<ExecutionContext> execution_context_; 104 WeakMember<ExecutionContext> execution_context_;
108 }; 105 };
109 106
110 } // namespace blink 107 } // namespace blink
111 108
112 #endif // BaseFetchContext_h 109 #endif // BaseFetchContext_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp ('k') | third_party/WebKit/Source/core/loader/BaseFetchContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698