Changeset 139678 in webkit


Ignore:
Timestamp:
Jan 14, 2013 3:49:56 PM (11 years ago)
Author:
crogers@google.com
Message:

Switch AudioDestinationChromium over to new createAudioDevice() method
https://bugs.webkit.org/show_bug.cgi?id=106816

Reviewed by James Robinson.

  • platform/audio/chromium/AudioDestinationChromium.cpp:

(WebCore::AudioDestinationChromium::AudioDestinationChromium):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r139674 r139678  
     12013-01-14  Chris Rogers  <crogers@google.com>
     2
     3        Switch AudioDestinationChromium over to new createAudioDevice() method
     4        https://bugs.webkit.org/show_bug.cgi?id=106816
     5
     6        Reviewed by James Robinson.
     7
     8        * platform/audio/chromium/AudioDestinationChromium.cpp:
     9        (WebCore::AudioDestinationChromium::AudioDestinationChromium):
     10
    1112013-01-14  Huang Dongsung  <luxtella@company100.net>
    212
  • trunk/Source/WebCore/platform/audio/chromium/AudioDestinationChromium.cpp

    r139652 r139678  
    6767        return;
    6868
    69     // FIXME: switch to new API (with input channels) once chromium supports it.
    70     m_audioDevice = adoptPtr(WebKit::Platform::current()->createAudioDevice(m_callbackBufferSize, numberOfOutputChannels, sampleRate, this));
     69    m_audioDevice = adoptPtr(WebKit::Platform::current()->createAudioDevice(m_callbackBufferSize, numberOfInputChannels, numberOfOutputChannels, sampleRate, this));
    7170    ASSERT(m_audioDevice);
    7271
Note: See TracChangeset for help on using the changeset viewer.