OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 (function(global, binding, v8) { | 5 (function(global, binding, v8) { |
6 'use strict'; | 6 'use strict'; |
7 | 7 |
8 const readableStreamController = v8.createPrivateSymbol('[[controller]]'); | 8 const readableStreamController = v8.createPrivateSymbol('[[controller]]'); |
9 const readableStreamQueue = v8.createPrivateSymbol('[[queue]]'); | 9 const readableStreamQueue = v8.createPrivateSymbol('[[queue]]'); |
10 const readableStreamQueueSize = | 10 const readableStreamQueueSize = |
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
754 value: ReadableStream, | 754 value: ReadableStream, |
755 enumerable: false, | 755 enumerable: false, |
756 configurable: true, | 756 configurable: true, |
757 writable: true | 757 writable: true |
758 }); | 758 }); |
759 | 759 |
760 // | 760 // |
761 // Exports to Blink | 761 // Exports to Blink |
762 // | 762 // |
763 | 763 |
| 764 binding.AcquireReadableStreamReader = AcquireReadableStreamReader; |
| 765 binding.IsReadableStream = IsReadableStream; |
764 binding.IsReadableStreamDisturbed = IsReadableStreamDisturbed; | 766 binding.IsReadableStreamDisturbed = IsReadableStreamDisturbed; |
| 767 binding.IsReadableStreamLocked = IsReadableStreamLocked; |
| 768 binding.IsReadableStreamReader = IsReadableStreamReader; |
| 769 binding.ReadFromReadableStreamReader = ReadFromReadableStreamReader; |
765 }); | 770 }); |
OLD | NEW |