| OLD | NEW |
| 1 This directory contains the Blink implementation of the WHATWG Streams standard: | 1 This directory contains the Blink implementation of the WHATWG Streams standard: |
| 2 https://streams.spec.whatwg.org/. There is also a legacy streams implementation. | 2 https://streams.spec.whatwg.org/. There is also a legacy streams implementation. |
| 3 | 3 |
| 4 ## V8 Extras ReadableStream Implementation | 4 ## V8 Extras ReadableStream Implementation |
| 5 | 5 |
| 6 - ByteLengthQueuingStrategy.js | 6 - ByteLengthQueuingStrategy.js |
| 7 - CountQueuingStrategy.js | 7 - CountQueuingStrategy.js |
| 8 - ReadableStream.js | 8 - ReadableStream.js |
| 9 - ReadableStreamExperimentalPipeTo.js |
| 9 - ReadableStreamController.h | 10 - ReadableStreamController.h |
| 10 - ReadableStreamOperations.{cpp,h} | 11 - ReadableStreamOperations.{cpp,h} |
| 11 - UnderlyingSourceBase.{cpp,h,idl} | 12 - UnderlyingSourceBase.{cpp,h,idl} |
| 13 - WritableStream.js |
| 12 | 14 |
| 13 These files implement ReadableStream using [V8 extras][1]. All new code should | 15 These files implement ReadableStream using [V8 extras][1]. All new code should |
| 14 use this implementation. | 16 use this implementation. |
| 15 | 17 |
| 16 [1]: https://docs.google.com/document/d/1AT5-T0aHGp7Lt29vPWFr2-qG8r3l9CByyvKwEuA
8Ec0 | 18 [1]: https://docs.google.com/document/d/1AT5-T0aHGp7Lt29vPWFr2-qG8r3l9CByyvKwEuA
8Ec0 |
| 17 | 19 |
| 18 ## Old streams | 20 ## Old streams |
| 19 | 21 |
| 20 - Stream.{cpp,h,idl} | 22 - Stream.{cpp,h,idl} |
| 21 | 23 |
| 22 These files support an old streams spec. They should eventually be removed, but | 24 These files support an old streams spec. They should eventually be removed, but |
| 23 right now XMLHttpRequest and Media Streams Extension code in Blink still | 25 right now XMLHttpRequest and Media Streams Extension code in Blink still |
| 24 depends on them. | 26 depends on them. |
| OLD | NEW |