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

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

Issue 2516353002: Introduce url_list to the Response scheme of CacheStorage. (Closed)
Patch Set: Created 4 years, 1 month 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/WorkerThreadableLoader.h
diff --git a/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h b/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h
index 2c70a2f75a57e1944b3339e782c246b176b3bfde..a9992dfc60d4130f45528e82b2f8e0a1f13c483e 100644
--- a/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h
+++ b/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h
@@ -154,6 +154,7 @@ class WorkerThreadableLoader final : public ThreadableLoader {
void didSendData(unsigned long long bytesSent,
unsigned long long totalBytesToBeSent) override;
+ void didReceiveRedirectTo(const KURL&) override;
void didReceiveResponse(unsigned long identifier,
const ResourceResponse&,
std::unique_ptr<WebDataConsumerHandle>) override;
@@ -193,6 +194,7 @@ class WorkerThreadableLoader final : public ThreadableLoader {
void didSendData(unsigned long long bytesSent,
unsigned long long totalBytesToBeSent);
+ void didReceiveRedirectTo(const KURL&);
void didReceiveResponse(unsigned long identifier,
std::unique_ptr<CrossThreadResourceResponseData>,
std::unique_ptr<WebDataConsumerHandle>);

Powered by Google App Engine
This is Rietveld 408576698