| Index: third_party/WebKit/public/platform/WebDataConsumerHandle.h
|
| diff --git a/third_party/WebKit/public/platform/WebDataConsumerHandle.h b/third_party/WebKit/public/platform/WebDataConsumerHandle.h
|
| index d1ef789ad75edf63d473ca1b95e49cc04a9277b8..4aa18599751eff7ca1ebbcb0990af8dd6cf1d21c 100644
|
| --- a/third_party/WebKit/public/platform/WebDataConsumerHandle.h
|
| +++ b/third_party/WebKit/public/platform/WebDataConsumerHandle.h
|
| @@ -12,6 +12,8 @@
|
|
|
| namespace blink {
|
|
|
| +class WebTaskRunner;
|
| +
|
| // WebDataConsumerHandle represents the "consumer" side of a data pipe. A user
|
| // can read data from it.
|
| //
|
| @@ -100,7 +102,7 @@ public:
|
| // if |client| is not null.
|
| // If |client| is not null and the handle is not waiting, client
|
| // notification is called asynchronously.
|
| - virtual std::unique_ptr<Reader> obtainReader(Client*) = 0;
|
| + virtual std::unique_ptr<Reader> obtainReader(Client*, std::unique_ptr<WebTaskRunner>) = 0;
|
|
|
| // Returns a string literal (e.g. class name) for debugging only.
|
| virtual const char* debugName() const = 0;
|
|
|