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

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

Issue 2780693003: [wasm] response-based compile APIs (Closed)
Patch Set: simplify 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..d781b3cf6d511cddd2b2fbbbe6de4f83203b2ff4 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