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

Unified Diff: third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp

Issue 2703343002: ServiceWorker: Use mojo's data pipe for respondWith(stream) (Closed)
Patch Set: Rebase Created 3 years, 8 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/modules/fetch/BodyStreamBuffer.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp b/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
index 828b6d0e8fa1d1c60f7180255f5e14cfc8c774bd..ad7df387afe009e65ba25ee92d9310a947ccc0f9 100644
--- a/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
+++ b/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
@@ -51,9 +51,9 @@ class BodyStreamBuffer::LoaderClient final
m_client->didFetchDataLoadedString(string);
}
- void didFetchDataLoadedStream() override {
+ void didFetchDataLoadedDataPipe() override {
m_buffer->endLoading();
- m_client->didFetchDataLoadedStream();
+ m_client->didFetchDataLoadedDataPipe();
}
void didFetchDataLoadFailed() override {

Powered by Google App Engine
This is Rietveld 408576698