Title: [149797] trunk/Source/WebCore
Revision
149797
Author
[email protected]
Date
2013-05-09 01:14:41 -0700 (Thu, 09 May 2013)

Log Message

Unreviewed build fix for Qt minimal build.

r149796 broke builds that have WEB_SOCKETS flag disabled.

* page/DOMWindow.idl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (149796 => 149797)


--- trunk/Source/WebCore/ChangeLog	2013-05-09 07:38:21 UTC (rev 149796)
+++ trunk/Source/WebCore/ChangeLog	2013-05-09 08:14:41 UTC (rev 149797)
@@ -1,5 +1,13 @@
 2013-05-09  Christophe Dumez  <[email protected]>
 
+        Unreviewed build fix for Qt minimal build.
+
+        r149796 broke builds that have WEB_SOCKETS flag disabled.
+
+        * page/DOMWindow.idl:
+
+2013-05-09  Christophe Dumez  <[email protected]>
+
         Add support for [NoInterfaceObject] Web IDL extended attribute
         https://bugs.webkit.org/show_bug.cgi?id=115714
 

Modified: trunk/Source/WebCore/page/DOMWindow.idl (149796 => 149797)


--- trunk/Source/WebCore/page/DOMWindow.idl	2013-05-09 07:38:21 UTC (rev 149796)
+++ trunk/Source/WebCore/page/DOMWindow.idl	2013-05-09 08:14:41 UTC (rev 149797)
@@ -326,7 +326,7 @@
     attribute HTMLOptionElementConstructor HTMLOptionElement;
     [CustomGetter, Conditional=VIDEO] attribute HTMLAudioElementConstructorConstructor Audio; // Usable with the new operator
     [Conditional=VIDEO] attribute HTMLAudioElementConstructor HTMLAudioElement;
-    [CustomGetter] attribute WebSocketConstructor WebSocket;
+    [Conditional=WEB_SOCKETS, CustomGetter] attribute WebSocketConstructor WebSocket;
     [Conditional=SHARED_WORKERS, CustomGetter] attribute SharedWorkerConstructor SharedWorker; // Usable with the new operator
     // Mozilla has a separate XMLDocument object for XML documents.
     // We just use Document for this.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to