Chromium Code Reviews| Index: third_party/WebKit/Source/core/streams/ReadableStream.idl |
| diff --git a/third_party/WebKit/Source/core/streams/ReadableStream.idl b/third_party/WebKit/Source/core/streams/ReadableStream.idl |
| index 33fbddc153a7d6508c76482eae7ab735bd8bdf9c..c4eca58eb076a63944bb41d0d4fab8344036dc6f 100644 |
| --- a/third_party/WebKit/Source/core/streams/ReadableStream.idl |
| +++ b/third_party/WebKit/Source/core/streams/ReadableStream.idl |
| @@ -2,9 +2,14 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| +// This type is marked NoInterfaceObject while we work to replace it with the |
| +// V8 extras implementation. It is still used for now to implement fetch body |
| +// streams, and so we can't remove it quite yet. |
|
yhirano
2015/10/15 08:04:55
Response.body (and Request.body) is currently of t
yhirano
2015/10/15 08:07:13
Oops, I thought I exposed Request.body experimenta
domenic
2015/10/15 16:01:42
Yes, it is of type ReadableByteStream, but on the
|
| + |
| [ |
| GarbageCollected, |
| Exposed=(Window,Worker), |
| + NoInterfaceObject |
| ] interface ReadableStream { |
| [CallWith=ExecutionContext, RaisesException] ReadableStreamReader getReader(); |
| [CallWith=ScriptState] Promise<void> cancel(optional any reason); |