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

Unified Diff: third_party/WebKit/Source/core/streams/ReadableStream.js

Issue 1908213004: [Streams] Remove SetReadableStreamDisturbed from ReadableStream.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | third_party/WebKit/Source/core/streams/ReadableStreamOperations.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/streams/ReadableStream.js
diff --git a/third_party/WebKit/Source/core/streams/ReadableStream.js b/third_party/WebKit/Source/core/streams/ReadableStream.js
index 46eef5435553303d0e47641cef816609637f1980..644af5008f268f77c1451710fb000ffdbdcca3fc 100644
--- a/third_party/WebKit/Source/core/streams/ReadableStream.js
+++ b/third_party/WebKit/Source/core/streams/ReadableStream.js
@@ -505,10 +505,6 @@
return stream[readableStreamBits] & DISTURBED;
}
- function SetReadableStreamDisturbed(stream) {
- return stream[readableStreamBits] |= DISTURBED;
- }
-
function IsReadableStreamLocked(stream) {
return stream[readableStreamReader] !== undefined;
}
@@ -818,7 +814,6 @@
binding.AcquireReadableStreamReader = AcquireReadableStreamReader;
binding.IsReadableStream = IsReadableStream;
binding.IsReadableStreamDisturbed = IsReadableStreamDisturbed;
- binding.SetReadableStreamDisturbed = SetReadableStreamDisturbed;
binding.IsReadableStreamLocked = IsReadableStreamLocked;
binding.IsReadableStreamReadable = IsReadableStreamReadable;
binding.IsReadableStreamClosed = IsReadableStreamClosed;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/streams/ReadableStreamOperations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698