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

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

Issue 2780693003: [wasm] response-based compile APIs (Closed)
Patch Set: no specific OWNERS for now 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 55de9f5db034875e0cfcdaefd1a6284351891350..a43b9e1850955079d7da27d02fa053720c60dc08 100644
--- a/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
+++ b/third_party/WebKit/Source/modules/fetch/BodyStreamBuffer.cpp
@@ -56,6 +56,11 @@ class BodyStreamBuffer::LoaderClient final
m_client->didFetchDataLoadedStream();
}
+ void didFetchDataLoadedCustomFormat() override {
+ m_buffer->endLoading();
+ m_client->didFetchDataLoadedCustomFormat();
+ }
+
void didFetchDataLoadFailed() override {
m_buffer->endLoading();
m_client->didFetchDataLoadFailed();

Powered by Google App Engine
This is Rietveld 408576698