Title: [169896] trunk/Source/WebCore
Revision
169896
Author
[email protected]
Date
2014-06-12 07:07:38 -0700 (Thu, 12 Jun 2014)

Log Message

[GTK] fails to build with --disable-webgl --disable-accelerated-compositing
https://bugs.webkit.org/show_bug.cgi?id=131267

Reviewed by Philippe Normand.

Add missing headers needed for Float32Array::create().

* Modules/webaudio/AudioBuffer.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (169895 => 169896)


--- trunk/Source/WebCore/ChangeLog	2014-06-12 14:04:50 UTC (rev 169895)
+++ trunk/Source/WebCore/ChangeLog	2014-06-12 14:07:38 UTC (rev 169896)
@@ -1,3 +1,14 @@
+2014-06-12  Alberto Garcia  <[email protected]>
+
+        [GTK] fails to build with --disable-webgl --disable-accelerated-compositing
+        https://bugs.webkit.org/show_bug.cgi?id=131267
+
+        Reviewed by Philippe Normand.
+
+        Add missing headers needed for Float32Array::create().
+
+        * Modules/webaudio/AudioBuffer.cpp:
+
 2014-06-12  Sergio Villar Senin  <[email protected]>
 
         [GTK] REGRESSION: application name is not correctly appended to the UA

Modified: trunk/Source/WebCore/Modules/webaudio/AudioBuffer.cpp (169895 => 169896)


--- trunk/Source/WebCore/Modules/webaudio/AudioBuffer.cpp	2014-06-12 14:04:50 UTC (rev 169895)
+++ trunk/Source/WebCore/Modules/webaudio/AudioBuffer.cpp	2014-06-12 14:07:38 UTC (rev 169896)
@@ -38,6 +38,9 @@
 #include "ExceptionCode.h"
 #include "ExceptionCodePlaceholder.h"
 
+#include <runtime/JSCInlines.h>
+#include <runtime/TypedArrayInlines.h>
+
 namespace WebCore {
 
 PassRefPtr<AudioBuffer> AudioBuffer::create(unsigned numberOfChannels, size_t numberOfFrames, float sampleRate)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to