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

Unified Diff: Source/core/loader/WorkerLoaderClientBridge.h

Issue 603903003: [Streams] Pass WebDataConsumerHandle when the response arrives. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@web-data-pipe
Patch Set: Created 6 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
« no previous file with comments | « Source/core/loader/ThreadableLoaderClientWrapper.h ('k') | Source/core/loader/WorkerLoaderClientBridge.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/WorkerLoaderClientBridge.h
diff --git a/Source/core/loader/WorkerLoaderClientBridge.h b/Source/core/loader/WorkerLoaderClientBridge.h
index 563897eec012dc723fbf0517548f4661253d163a..7ea8c86451714b18f3f3ea3c39ba6b60af4dacf3 100644
--- a/Source/core/loader/WorkerLoaderClientBridge.h
+++ b/Source/core/loader/WorkerLoaderClientBridge.h
@@ -49,7 +49,7 @@ public:
virtual ~WorkerLoaderClientBridge();
virtual void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
- virtual void didReceiveResponse(unsigned long identifier, const ResourceResponse&) override;
+ virtual void didReceiveResponse(unsigned long identifier, const ResourceResponse&, PassOwnPtr<WebDataConsumerHandle>) override;
virtual void didReceiveData(const char*, unsigned dataLength) override;
virtual void didDownloadData(int dataLength) override;
virtual void didReceiveCachedMetadata(const char*, int dataLength) override;
« no previous file with comments | « Source/core/loader/ThreadableLoaderClientWrapper.h ('k') | Source/core/loader/WorkerLoaderClientBridge.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698