Title: [96818] trunk/Source/WebCore
Revision
96818
Author
commit-qu...@webkit.org
Date
2011-10-06 09:37:35 -0700 (Thu, 06 Oct 2011)

Log Message

Fix compilation by adding some missing ENABLE(VIDEO|XSLT)
https://bugs.webkit.org/show_bug.cgi?id=69522

Unreviewed build fix

Patch by Rémi Duraffort <remi.duraff...@st.com> on 2011-10-06

* bindings/v8/custom/V8HTMLAudioElementConstructor.cpp:
* bindings/v8/custom/V8HTMLAudioElementConstructor.h:
* bindings/v8/custom/V8XSLTProcessorCustom.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (96817 => 96818)


--- trunk/Source/WebCore/ChangeLog	2011-10-06 16:31:58 UTC (rev 96817)
+++ trunk/Source/WebCore/ChangeLog	2011-10-06 16:37:35 UTC (rev 96818)
@@ -1,3 +1,14 @@
+2011-10-06  Rémi Duraffort  <remi.duraff...@st.com>
+
+        Fix compilation by adding some missing ENABLE(VIDEO|XSLT)
+        https://bugs.webkit.org/show_bug.cgi?id=69522
+
+        Unreviewed build fix
+
+        * bindings/v8/custom/V8HTMLAudioElementConstructor.cpp:
+        * bindings/v8/custom/V8HTMLAudioElementConstructor.h:
+        * bindings/v8/custom/V8XSLTProcessorCustom.cpp:
+
 2011-10-06  Pavel Feldman  <pfeld...@google.com>
 
         Web Inspector: add Styles and Metrics sidebars to the compilation.

Modified: trunk/Source/WebCore/bindings/v8/custom/V8HTMLAudioElementConstructor.cpp (96817 => 96818)


--- trunk/Source/WebCore/bindings/v8/custom/V8HTMLAudioElementConstructor.cpp	2011-10-06 16:31:58 UTC (rev 96817)
+++ trunk/Source/WebCore/bindings/v8/custom/V8HTMLAudioElementConstructor.cpp	2011-10-06 16:37:35 UTC (rev 96818)
@@ -29,6 +29,9 @@
  */
 
 #include "config.h"
+
+#if ENABLE(VIDEO)
+
 #include "V8HTMLAudioElementConstructor.h"
 
 #include "HTMLAudioElement.h"
@@ -96,3 +99,5 @@
 }
 
 } // namespace WebCore
+
+#endif // ENABLE(VIDEO)

Modified: trunk/Source/WebCore/bindings/v8/custom/V8HTMLAudioElementConstructor.h (96817 => 96818)


--- trunk/Source/WebCore/bindings/v8/custom/V8HTMLAudioElementConstructor.h	2011-10-06 16:31:58 UTC (rev 96817)
+++ trunk/Source/WebCore/bindings/v8/custom/V8HTMLAudioElementConstructor.h	2011-10-06 16:37:35 UTC (rev 96818)
@@ -31,6 +31,8 @@
 #ifndef V8HTMLAudioElementConstructor_h
 #define V8HTMLAudioElementConstructor_h
 
+#if ENABLE(VIDEO)
+
 #include "WrapperTypeInfo.h"
 
 #include <v8.h>
@@ -45,4 +47,6 @@
 
 }
 
+#endif // ENABLE(VIDEO)
+
 #endif // V8HTMLAudioElementConstructor_h

Modified: trunk/Source/WebCore/bindings/v8/custom/V8XSLTProcessorCustom.cpp (96817 => 96818)


--- trunk/Source/WebCore/bindings/v8/custom/V8XSLTProcessorCustom.cpp	2011-10-06 16:31:58 UTC (rev 96817)
+++ trunk/Source/WebCore/bindings/v8/custom/V8XSLTProcessorCustom.cpp	2011-10-06 16:37:35 UTC (rev 96818)
@@ -29,6 +29,9 @@
  */
 
 #include "config.h"
+
+#if ENABLE(XSLT)
+
 #include "V8XSLTProcessor.h"
 
 #include "Document.h"
@@ -145,3 +148,5 @@
 }
 
 } // namespace WebCore
+
+#endif // ENABLE(XSLT)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to