Title: [151224] trunk/Source/WebCore
- Revision
- 151224
- Author
- [email protected]
- Date
- 2013-06-05 07:31:37 -0700 (Wed, 05 Jun 2013)
Log Message
Unreviewed build fix when CHANNEL_MESSAGING is disabled.
Add #if ENABLE(CHANNEL_MESSAGING) to JSMessageChannelCustom.cpp.
* bindings/js/JSMessageChannelCustom.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (151223 => 151224)
--- trunk/Source/WebCore/ChangeLog 2013-06-05 14:16:45 UTC (rev 151223)
+++ trunk/Source/WebCore/ChangeLog 2013-06-05 14:31:37 UTC (rev 151224)
@@ -1,5 +1,13 @@
2013-06-05 Christophe Dumez <[email protected]>
+ Unreviewed build fix when CHANNEL_MESSAGING is disabled.
+
+ Add #if ENABLE(CHANNEL_MESSAGING) to JSMessageChannelCustom.cpp.
+
+ * bindings/js/JSMessageChannelCustom.cpp:
+
+2013-06-05 Christophe Dumez <[email protected]>
+
Remove remaining custom getters for WorkerContext constructor attributes
https://bugs.webkit.org/show_bug.cgi?id=117247
Modified: trunk/Source/WebCore/bindings/js/JSMessageChannelCustom.cpp (151223 => 151224)
--- trunk/Source/WebCore/bindings/js/JSMessageChannelCustom.cpp 2013-06-05 14:16:45 UTC (rev 151223)
+++ trunk/Source/WebCore/bindings/js/JSMessageChannelCustom.cpp 2013-06-05 14:31:37 UTC (rev 151224)
@@ -24,6 +24,9 @@
*/
#include "config.h"
+
+#if ENABLE(CHANNEL_MESSAGING)
+
#include "JSMessageChannel.h"
#include "MessageChannel.h"
@@ -49,3 +52,5 @@
}
} // namespace WebCore
+
+#endif // ENABLE(CHANNEL_MESSAGING)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes