Unreviewed build fix.
authorjer.noble@apple.com <jer.noble@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 16 Jan 2012 19:28:30 +0000 (19:28 +0000)
committerjer.noble@apple.com <jer.noble@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 16 Jan 2012 19:28:30 +0000 (19:28 +0000)
Added necessary header files to VectorMath.cpp to fix Chromium compile error.

* platform/audio/VectorMath.cpp:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@105079 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/platform/audio/VectorMath.cpp

index 4488397..93be6d7 100644 (file)
@@ -1,3 +1,11 @@
+2012-01-16  Jer Noble  <jer.noble@apple.com>
+
+        Unreviewed build fix.
+
+        Added necessary header files to VectorMath.cpp to fix Chromium compile error.
+
+        * platform/audio/VectorMath.cpp:
+
 2011-12-12  Jer Noble  <jer.noble@apple.com>
 
         WebAudio: Optimize AudioChannel::maxAbsValue().
index e30fd10..572dbf3 100644 (file)
@@ -36,6 +36,9 @@
 #include <emmintrin.h>
 #endif
 
+#include <algorithm>
+#include <math.h>
+
 namespace WebCore {
 
 namespace VectorMath {