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

Unified Diff: third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp

Issue 2751143003: Move FrameFetchContext::dispatchDidLoadResourceFromMemoryCache logic into ResourceFetcher (Closed)
Patch Set: addressed comments Created 3 years, 9 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/platform/loader/fetch/FetchContext.cpp
diff --git a/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp b/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp
index 850651c5a2953555f0790f166600591ca4d2ceab..2d6fe95cbb57ad9a866e01ce4ac25056cf11a70e 100644
--- a/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp
+++ b/third_party/WebKit/Source/platform/loader/fetch/FetchContext.cpp
@@ -62,15 +62,15 @@ void FetchContext::dispatchWillSendRequest(unsigned long,
void FetchContext::dispatchDidLoadResourceFromMemoryCache(
unsigned long,
- Resource*,
- WebURLRequest::FrameType,
- WebURLRequest::RequestContext) {}
+ const ResourceRequest&,
+ const ResourceResponse&) {}
void FetchContext::dispatchDidReceiveResponse(unsigned long,
const ResourceResponse&,
WebURLRequest::FrameType,
WebURLRequest::RequestContext,
- Resource*) {}
+ Resource*,
+ ResourceResponseType) {}
void FetchContext::dispatchDidReceiveData(unsigned long, const char*, int) {}

Powered by Google App Engine
This is Rietveld 408576698