OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 enum ReadableStreamState { | 5 [ |
6 "readable", | 6 GarbageCollected, |
7 "waiting", | 7 Exposed=(Window,Worker), |
8 "closed", | 8 ] interface ReadableStream { |
9 "errored" | 9 [CallWith=ExecutionContext, RaisesException] ReadableStreamReader getReader(
); |
| 10 [CallWith=ScriptState] Promise<void> cancel(optional any reason); |
10 }; | 11 }; |
11 | |
12 [ | |
13 RuntimeEnabled=Stream, | |
14 GarbageCollected | |
15 ] interface ReadableStream { | |
16 [CallWith=ScriptState, RaisesException] any read(); | |
17 [CallWith=ScriptState] Promise wait(); | |
18 [ImplementedAs=stateString] readonly attribute ReadableStreamState state; | |
19 | |
20 [CallWith=ScriptState] Promise cancel(any reason); | |
21 | |
22 [CallWith=ScriptState] readonly attribute Promise closed; | |
23 }; | |
OLD | NEW |