Chromium Code Reviews| Index: Source/core/streams/ReadableStream.idl |
| diff --git a/Source/core/streams/ReadableStream.idl b/Source/core/streams/ReadableStream.idl |
| index 98b123043d79b27ac09f66980306e47a90ae18a8..9d517c07310223c4dc297e41c94528d0febc890c 100644 |
| --- a/Source/core/streams/ReadableStream.idl |
| +++ b/Source/core/streams/ReadableStream.idl |
| @@ -8,8 +8,6 @@ |
| Exposed=(Window,Worker), |
| ActiveDOMObject, |
| ] interface ReadableStream { |
| - [CallWith=ScriptState] Promise cancel(any reason); |
| [RaisesException] ReadableStreamReader getReader(); |
| - |
| - [CallWith=ScriptState] readonly attribute Promise closed; |
| + [CallWith=ScriptState] Promise<any> cancel(any reason); |
|
domenic (use chromium.org)
2015/03/18 08:32:17
I think this could be Promise<void>, both here and
yhirano
2015/03/18 08:36:26
Done.
|
| }; |