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

Unified Diff: third_party/WebKit/Source/core/loader/FrameFetchContext.h

Issue 2900613002: Support DevTools for off-main-thread-fetch (Closed)
Patch Set: incorporated kinuko's comment Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/loader/FrameFetchContext.h
diff --git a/third_party/WebKit/Source/core/loader/FrameFetchContext.h b/third_party/WebKit/Source/core/loader/FrameFetchContext.h
index 54324cf402cd3a250b696d9d8aeca5548a8aa710..413eece697f2a287735d44451285d4dc0b32d7a7 100644
--- a/third_party/WebKit/Source/core/loader/FrameFetchContext.h
+++ b/third_party/WebKit/Source/core/loader/FrameFetchContext.h
@@ -95,8 +95,6 @@ class CORE_EXPORT FrameFetchContext final : public BaseFetchContext {
void DispatchDidReceiveData(unsigned long identifier,
const char* data,
int data_length) override;
- void DispatchDidReceiveEncodedData(unsigned long identifier,
- int encoded_data_length) override;
void DispatchDidDownloadData(unsigned long identifier,
int data_length,
int encoded_data_length) override;
@@ -172,7 +170,6 @@ class CORE_EXPORT FrameFetchContext final : public BaseFetchContext {
Settings* GetSettings() const override;
SubresourceFilter* GetSubresourceFilter() const override;
SecurityContext* GetParentSecurityContext() const override;
- bool ShouldBlockRequestByInspector(const ResourceRequest&) const override;
void DispatchDidBlockRequest(const ResourceRequest&,
const FetchInitiatorInfo&,
ResourceRequestBlockedReason) const override;

Powered by Google App Engine
This is Rietveld 408576698