Title: [115769] trunk/Source/WebKit/chromium
Revision
115769
Author
pilg...@chromium.org
Date
2012-05-01 17:33:43 -0700 (Tue, 01 May 2012)

Log Message

[Chromium] Additional instances of calling createAudioDevice directly
https://bugs.webkit.org/show_bug.cgi?id=85321

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 (115768 => 115769)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-05-02 00:27:45 UTC (rev 115768)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-05-02 00:33:43 UTC (rev 115769)
@@ -1,5 +1,17 @@
 2012-05-01  Mark Pilgrim  <pilg...@chromium.org>
 
+        [Chromium] Additional instances of calling createAudioDevice directly
+        https://bugs.webkit.org/show_bug.cgi?id=85321
+
+        Reviewed by Kentaro Hara.
+
+        Part of a refactoring series. See tracking bug 82948.
+
+        * src/AudioDestinationChromium.cpp:
+        (WebCore::AudioDestinationChromium::AudioDestinationChromium):
+
+2012-05-01  Mark Pilgrim  <pilg...@chromium.org>
+
         [Chromium] Additional instances of calling mimeRegistry directly
         https://bugs.webkit.org/show_bug.cgi?id=85320
 

Modified: trunk/Source/WebKit/chromium/src/AudioDestinationChromium.cpp (115768 => 115769)


--- trunk/Source/WebKit/chromium/src/AudioDestinationChromium.cpp	2012-05-02 00:27:45 UTC (rev 115768)
+++ trunk/Source/WebKit/chromium/src/AudioDestinationChromium.cpp	2012-05-02 00:33:43 UTC (rev 115769)
@@ -71,7 +71,7 @@
     if (m_callbackBufferSize + renderBufferSize > fifoSize)
         return;
     
-    m_audioDevice = adoptPtr(webKitPlatformSupport()->createAudioDevice(m_callbackBufferSize, numberOfChannels, sampleRate, this));
+    m_audioDevice = adoptPtr(WebKit::Platform::current()->createAudioDevice(m_callbackBufferSize, numberOfChannels, sampleRate, this));
     ASSERT(m_audioDevice);
 
     // Create a FIFO to handle the possibility of the callback size
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to