Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(229)

Side by Side Diff: third_party/WebKit/Source/core/streams/README.md

Issue 2561443004: Implementation of ReadableStream pipeTo and pipeThrough (Closed)
Patch Set: Rebase and move includes to .gn Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698