Title: [148579] trunk/Source/WebCore
Revision
148579
Author
[email protected]
Date
2013-04-16 17:05:11 -0700 (Tue, 16 Apr 2013)

Log Message

Further unreviewed build fix: protect JSAudioBufferCustom with a ENABLE(WEB_AUDIO) check.

* bindings/js/JSAudioBufferCustom.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (148578 => 148579)


--- trunk/Source/WebCore/ChangeLog	2013-04-17 00:03:42 UTC (rev 148578)
+++ trunk/Source/WebCore/ChangeLog	2013-04-17 00:05:11 UTC (rev 148579)
@@ -1,5 +1,11 @@
 2013-04-16  Jer Noble  <[email protected]>
 
+        Further unreviewed build fix: protect JSAudioBufferCustom with a ENABLE(WEB_AUDIO) check.
+
+        * bindings/js/JSAudioBufferCustom.cpp:
+
+2013-04-16  Jer Noble  <[email protected]>
+
         Unreviewed build fix; add new JSAudioBuffer.cpp file to more build systems.
 
         * GNUmakefile.list.am:

Modified: trunk/Source/WebCore/bindings/js/JSAudioBufferCustom.cpp (148578 => 148579)


--- trunk/Source/WebCore/bindings/js/JSAudioBufferCustom.cpp	2013-04-17 00:03:42 UTC (rev 148578)
+++ trunk/Source/WebCore/bindings/js/JSAudioBufferCustom.cpp	2013-04-17 00:05:11 UTC (rev 148579)
@@ -24,8 +24,10 @@
  */
 
 #include "config.h"
+
+#if ENABLE(WEB_AUDIO)
+
 #include "JSAudioBuffer.h"
-
 #include "AudioBuffer.h"
 
 using namespace JSC;
@@ -49,3 +51,5 @@
 }
 
 }
+
+#endif // ENABLE(WEB_AUDIO)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to