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

Unified Diff: Source/core/streams/ReadableByteStreamReader.h

Issue 1233573002: [Fetch API] Remove DrainingBuffer. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 | Source/core/streams/UnderlyingSource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/streams/ReadableByteStreamReader.h
diff --git a/Source/core/streams/ReadableByteStreamReader.h b/Source/core/streams/ReadableByteStreamReader.h
index 45acab3dae33b127a980aa029eb2960c2ac2c767..b9ae3af041652102dab4b9d4a46807b68d4d53b1 100644
--- a/Source/core/streams/ReadableByteStreamReader.h
+++ b/Source/core/streams/ReadableByteStreamReader.h
@@ -27,6 +27,7 @@ public:
ScriptPromise cancel(ScriptState* scriptState) { return m_reader->cancel(scriptState); }
ScriptPromise cancel(ScriptState* scriptState, ScriptValue reason) { return m_reader->cancel(scriptState, reason); }
void releaseLock(ExceptionState& es) { return m_reader->releaseLock(es); }
+ void releaseLock() { return m_reader->releaseLock(); }
DEFINE_INLINE_VIRTUAL_TRACE()
{
« no previous file with comments | « no previous file | Source/core/streams/UnderlyingSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698