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

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

Issue 2703343002: ServiceWorker: Use mojo's data pipe for respondWith(stream) (Closed)
Patch Set: Rebased 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 340d5b9ee835a08592b5d9c9a3964512626eb316..8f79a98d0a4f04115b8ae194e1c39bbe79193af2 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
client_->DidFetchDataLoadedString(string);
}
- void DidFetchDataLoadedStream() override {
+ void DidFetchDataLoadedDataPipe() override {
buffer_->EndLoading();
- client_->DidFetchDataLoadedStream();
+ client_->DidFetchDataLoadedDataPipe();
}
void DidFetchDataLoadedCustomFormat() override {

Powered by Google App Engine
This is Rietveld 408576698