| Index: third_party/WebKit/Source/modules/fetch/DataConsumerHandleUtil.h
|
| diff --git a/third_party/WebKit/Source/modules/fetch/DataConsumerHandleUtil.h b/third_party/WebKit/Source/modules/fetch/DataConsumerHandleUtil.h
|
| index 51602cbbddcaebda2d2577bfac1447834722f368..6b5b51e06b327a395f35d9a345c0b15ccbcc02a9 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/DataConsumerHandleUtil.h
|
| +++ b/third_party/WebKit/Source/modules/fetch/DataConsumerHandleUtil.h
|
| @@ -14,6 +14,8 @@
|
|
|
| namespace blink {
|
|
|
| +class WebTaskRunner;
|
| +
|
| // Returns a handle that returns ShouldWait for read / beginRead and
|
| // UnexpectedError for endRead.
|
| MODULES_EXPORT std::unique_ptr<WebDataConsumerHandle> createWaitingDataConsumerHandle();
|
| @@ -36,7 +38,7 @@ MODULES_EXPORT std::unique_ptr<FetchDataConsumerHandle> createFetchDataConsumerH
|
| class NotifyOnReaderCreationHelper final {
|
| DISALLOW_NEW();
|
| public:
|
| - NotifyOnReaderCreationHelper(WebDataConsumerHandle::Client* /* client */);
|
| + NotifyOnReaderCreationHelper(WebDataConsumerHandle::Client*, WebTaskRunner*);
|
|
|
| private:
|
| void notify(WebDataConsumerHandle::Client*);
|
|
|