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

Unified Diff: Source/core/streams/ByteLengthQueuingStrategy.js

Issue 1118673002: Implement ReadableStream as a V8 extra (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanups; make controller a member instead of arg Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/streams/CountQueuingStrategy.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/streams/ByteLengthQueuingStrategy.js
diff --git a/Source/core/streams/ByteLengthQueuingStrategy.js b/Source/core/streams/ByteLengthQueuingStrategy.js
new file mode 100644
index 0000000000000000000000000000000000000000..ce64b588a4a77d08cf50703c6785506319c67f7a
--- /dev/null
+++ b/Source/core/streams/ByteLengthQueuingStrategy.js
@@ -0,0 +1,18 @@
+(function() {
+ 'use strict';
+
+ const NONE = 0;
+ const DONT_ENUM = 2;
+
+ class ByteLengthQueuingStrategy {
+ constructor(options) {
+ %AddNamedProperty(this, 'highWaterMark', options.highWaterMark, NONE);
+ }
+
+ size(chunk) {
+ return chunk.byteLength;
+ }
+ }
+
+ %AddNamedProperty(global, 'ByteLengthQueuingStrategy', ByteLengthQueuingStrategy, DONT_ENUM);
+});
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/streams/CountQueuingStrategy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698