Title: [114668] trunk/Source/WebKit/chromium
Revision
114668
Author
[email protected]
Date
2012-04-19 13:53:03 -0700 (Thu, 19 Apr 2012)

Log Message

[Chromium] Call audioHardwareBufferSize directly
https://bugs.webkit.org/show_bug.cgi?id=84370

Reviewed by Kentaro Hara.

Part of a refactoring series. See tracking bug 82948.

* src/AudioDestinationChromium.cpp:
(WebCore::AudioDestinationChromium::AudioDestinationChromium):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (114667 => 114668)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-04-19 20:34:13 UTC (rev 114667)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-04-19 20:53:03 UTC (rev 114668)
@@ -1,3 +1,15 @@
+2012-04-19  Mark Pilgrim  <[email protected]>
+
+        [Chromium] Call audioHardwareBufferSize directly
+        https://bugs.webkit.org/show_bug.cgi?id=84370
+
+        Reviewed by Kentaro Hara.
+
+        Part of a refactoring series. See tracking bug 82948.
+
+        * src/AudioDestinationChromium.cpp:
+        (WebCore::AudioDestinationChromium::AudioDestinationChromium):
+
 2012-04-19  Sami Kyostila  <[email protected]>
 
         [chromium] Add tests for scrolling non-root layers in the compositor thread

Modified: trunk/Source/WebKit/chromium/src/AudioDestinationChromium.cpp (114667 => 114668)


--- trunk/Source/WebKit/chromium/src/AudioDestinationChromium.cpp	2012-04-19 20:34:13 UTC (rev 114667)
+++ trunk/Source/WebKit/chromium/src/AudioDestinationChromium.cpp	2012-04-19 20:53:03 UTC (rev 114668)
@@ -63,7 +63,7 @@
     , m_isPlaying(false)
 {
     // Use the optimal buffer size recommended by the audio backend.
-    m_callbackBufferSize = webKitPlatformSupport()->audioHardwareBufferSize();
+    m_callbackBufferSize = WebKit::Platform::current()->audioHardwareBufferSize();
 
     // Quick exit if the requested size is too large.
     ASSERT(m_callbackBufferSize + renderBufferSize <= fifoSize);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to