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

Unified Diff: Source/modules/fetch/DataConsumerHandleUtil.h

Issue 1192913007: Change BodyStreamBuffer to be FetchDataConsumerHandle-based and enable backpressure in Fetch API (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: (temp) alternative to calling didGetReadable in sync. Created 5 years, 6 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: Source/modules/fetch/DataConsumerHandleUtil.h
diff --git a/Source/modules/fetch/DataConsumerHandleUtil.h b/Source/modules/fetch/DataConsumerHandleUtil.h
index a124c9faa49e0b84d432bcc8f32950111b6daf36..1cd84803b2de26e4e2bb683fa640282aaf028438 100644
--- a/Source/modules/fetch/DataConsumerHandleUtil.h
+++ b/Source/modules/fetch/DataConsumerHandleUtil.h
@@ -26,7 +26,7 @@ MODULES_EXPORT PassOwnPtr<WebDataConsumerHandle> createDoneDataConsumerHandle();
MODULES_EXPORT PassOwnPtr<WebDataConsumerHandle> createUnexpectedErrorDataConsumerHandle();
// Returns a FetchDataConsumerHandle that wraps WebDataConsumerHandle.
-PassOwnPtr<FetchDataConsumerHandle> createFetchDataConsumerHandleFromWebHandle(PassOwnPtr<WebDataConsumerHandle>);
+MODULES_EXPORT PassOwnPtr<FetchDataConsumerHandle> createFetchDataConsumerHandleFromWebHandle(PassOwnPtr<WebDataConsumerHandle>);
// A helper class to call Client::didGetReadable() asynchronously after
// Reader creation.

Powered by Google App Engine
This is Rietveld 408576698