summaryrefslogtreecommitdiff
path: root/Source/WebCore/bindings/js/JSReadableStreamPrivateConstructors.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/bindings/js/JSReadableStreamPrivateConstructors.h')
-rw-r--r--Source/WebCore/bindings/js/JSReadableStreamPrivateConstructors.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/Source/WebCore/bindings/js/JSReadableStreamPrivateConstructors.h b/Source/WebCore/bindings/js/JSReadableStreamPrivateConstructors.h
new file mode 100644
index 000000000..ac16afdef
--- /dev/null
+++ b/Source/WebCore/bindings/js/JSReadableStreamPrivateConstructors.h
@@ -0,0 +1,41 @@
+/*
+ * Copyright (C) 2015 Canon Inc. All rights reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#pragma once
+
+#if ENABLE(READABLE_STREAM_API)
+
+namespace JSC {
+class JSObject;
+class VM;
+}
+
+namespace WebCore {
+
+class JSDOMGlobalObject;
+
+JSC::JSObject* createReadableStreamDefaultReaderPrivateConstructor(JSC::VM&, JSDOMGlobalObject&);
+JSC::JSObject* createReadableStreamDefaultControllerPrivateConstructor(JSC::VM&, JSDOMGlobalObject&);
+
+#if ENABLE(READABLE_BYTE_STREAM_API)
+JSC::JSObject* createReadableByteStreamControllerPrivateConstructor(JSC::VM&, JSDOMGlobalObject&);
+#endif
+
+} // namespace WebCore
+
+#endif // ENABLE(READABLE_STREAM_API)