Title: [190804] trunk/Source/WebCore
- Revision
- 190804
- Author
- [email protected]
- Date
- 2015-10-09 10:08:25 -0700 (Fri, 09 Oct 2015)
Log Message
Fix the !ENABLE(STREAM_API) build after r190794
https://bugs.webkit.org/show_bug.cgi?id=149955
Reviewed by Darin Adler.
* bindings/js/WebCoreJSBuiltinInternals.h:
(WebCore::JSBuiltinInternalFunctions::visit):
(WebCore::JSBuiltinInternalFunctions::init):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (190803 => 190804)
--- trunk/Source/WebCore/ChangeLog 2015-10-09 17:04:41 UTC (rev 190803)
+++ trunk/Source/WebCore/ChangeLog 2015-10-09 17:08:25 UTC (rev 190804)
@@ -1,5 +1,16 @@
2015-10-09 Csaba Osztrogonác <[email protected]>
+ Fix the !ENABLE(STREAM_API) build after r190794
+ https://bugs.webkit.org/show_bug.cgi?id=149955
+
+ Reviewed by Darin Adler.
+
+ * bindings/js/WebCoreJSBuiltinInternals.h:
+ (WebCore::JSBuiltinInternalFunctions::visit):
+ (WebCore::JSBuiltinInternalFunctions::init):
+
+2015-10-09 Csaba Osztrogonác <[email protected]>
+
Fix the binding generator after r190785
https://bugs.webkit.org/show_bug.cgi?id=149956
Modified: trunk/Source/WebCore/bindings/js/WebCoreJSBuiltinInternals.h (190803 => 190804)
--- trunk/Source/WebCore/bindings/js/WebCoreJSBuiltinInternals.h 2015-10-09 17:04:41 UTC (rev 190803)
+++ trunk/Source/WebCore/bindings/js/WebCoreJSBuiltinInternals.h 2015-10-09 17:08:25 UTC (rev 190804)
@@ -39,11 +39,15 @@
void visit(JSC::SlotVisitor& visitor) {
#if ENABLE(STREAMS_API)
m_readableStreamInternalsFunctions.visit(visitor);
+#else
+ UNUSED_PARAM(visitor);
#endif
}
void init(JSC::JSGlobalObject& globalObject) {
#if ENABLE(STREAMS_API)
m_readableStreamInternalsFunctions.init(globalObject);
+#else
+ UNUSED_PARAM(globalObject);
#endif
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes