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

Unified Diff: third_party/WebKit/Source/core/streams/ReadableByteStream.h

Issue 1404523005: Implement author-constructible ReadableStream using V8 extras (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor test tweaks Created 5 years, 1 month 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
Index: third_party/WebKit/Source/core/streams/ReadableByteStream.h
diff --git a/third_party/WebKit/Source/core/streams/ReadableByteStream.h b/third_party/WebKit/Source/core/streams/ReadableByteStream.h
index 431e4a525c4ac83d71431bc1447b84be577a57ce..b502b0f72e623430305580ba17b6826789a012dd 100644
--- a/third_party/WebKit/Source/core/streams/ReadableByteStream.h
+++ b/third_party/WebKit/Source/core/streams/ReadableByteStream.h
@@ -19,7 +19,7 @@ class ScriptState;
class Strategy;
class UnderlyingSource;
-class CORE_EXPORT ReadableByteStream : public ReadableStreamImpl<ReadableStreamChunkTypeTraits<DOMArrayBufferView>> {
+class CORE_EXPORT ReadableByteStream : public ReadableStreamImpl<ReadableStreamChunkTypeTraits<DOMArrayBufferView>>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
explicit ReadableByteStream(UnderlyingSource* source) : ReadableStreamImpl<ReadableStreamChunkTypeTraits<DOMArrayBufferView>>(source) { }
« no previous file with comments | « third_party/WebKit/Source/core/streams/README.md ('k') | third_party/WebKit/Source/core/streams/ReadableStream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698