Title: [140918] trunk/Source/WebCore
- Revision
- 140918
- Author
- [email protected]
- Date
- 2013-01-26 16:09:39 -0800 (Sat, 26 Jan 2013)
Log Message
Fix the test for CHANNEL_MESSAGING in idl files
https://bugs.webkit.org/show_bug.cgi?id=108006
Patch by Laszlo Gombos <[email protected]> on 2013-01-26
Reviewed by Alexey Proskuryakov.
No new tests, this is a build fix.
* workers/WorkerContext.idl: Make sure ENABLE_CHANNEL_MESSAGING is
defined before using it to be consitent with other guards inside idl
files.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (140917 => 140918)
--- trunk/Source/WebCore/ChangeLog 2013-01-26 22:55:56 UTC (rev 140917)
+++ trunk/Source/WebCore/ChangeLog 2013-01-27 00:09:39 UTC (rev 140918)
@@ -1,3 +1,16 @@
+2013-01-26 Laszlo Gombos <[email protected]>
+
+ Fix the test for CHANNEL_MESSAGING in idl files
+ https://bugs.webkit.org/show_bug.cgi?id=108006
+
+ Reviewed by Alexey Proskuryakov.
+
+ No new tests, this is a build fix.
+
+ * workers/WorkerContext.idl: Make sure ENABLE_CHANNEL_MESSAGING is
+ defined before using it to be consitent with other guards inside idl
+ files.
+
2013-01-26 Tim Volodine <[email protected]>
Text Autosizing: simplify and clean-up preOrderTraversal skipping containers
Modified: trunk/Source/WebCore/workers/WorkerContext.idl (140917 => 140918)
--- trunk/Source/WebCore/workers/WorkerContext.idl 2013-01-26 22:55:56 UTC (rev 140917)
+++ trunk/Source/WebCore/workers/WorkerContext.idl 2013-01-27 00:09:39 UTC (rev 140918)
@@ -74,7 +74,7 @@
attribute MessageEventConstructor MessageEvent;
attribute WorkerLocationConstructor WorkerLocation;
-#if ENABLE_CHANNEL_MESSAGING
+#if defined(ENABLE_CHANNEL_MESSAGING) && ENABLE_CHANNEL_MESSAGING
[JSCustomGetter] attribute MessageChannelConstructor MessageChannel;
#endif
[JSCustomGetter] attribute EventSourceConstructor EventSource;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes