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

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

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/streams/ScriptUnderlyingSource.idl ('k') | Source/core/streams/StreamTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/streams/StreamTest.h
diff --git a/Source/core/streams/StreamTest.h b/Source/core/streams/StreamTest.h
new file mode 100644
index 0000000000000000000000000000000000000000..2fcb359daf5a3bfee8b0ba1050ab8f63e8b95c26
--- /dev/null
+++ b/Source/core/streams/StreamTest.h
@@ -0,0 +1,21 @@
+#ifndef StreamTest_h
+#define StreamTest_h
+
+#include "bindings/core/v8/ScriptWrappable.h"
+#include "bindings/core/v8/ScriptState.h"
+#include "core/streams/ScriptReadableStream.h"
+
+namespace blink {
+
+class CORE_EXPORT StreamTest : public GarbageCollectedFinalized<StreamTest>, public ScriptWrappable {
+ DEFINE_WRAPPERTYPEINFO();
+
+public:
+ static ScriptReadableStream test(ScriptState*);
+
+ DECLARE_VIRTUAL_TRACE();
+};
+
+} // namespace blink
+
+#endif StreamTest_h
« no previous file with comments | « Source/core/streams/ScriptUnderlyingSource.idl ('k') | Source/core/streams/StreamTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698