| Index: content/renderer/pepper/pepper_platform_audio_input_impl.h
|
| diff --git a/content/renderer/pepper/pepper_platform_audio_input_impl.h b/content/renderer/pepper/pepper_platform_audio_input_impl.h
|
| index 4df6eb9c4718dccba2f4999873ca01103f81c9d7..f9f08f17f56e5e6f941e1f42c869bbd44a1b3f04 100644
|
| --- a/content/renderer/pepper/pepper_platform_audio_input_impl.h
|
| +++ b/content/renderer/pepper/pepper_platform_audio_input_impl.h
|
| @@ -11,7 +11,7 @@
|
| #include "content/renderer/media/audio_input_message_filter.h"
|
| #include "webkit/plugins/ppapi/plugin_delegate.h"
|
|
|
| -struct AudioParameters;
|
| +class AudioParameters;
|
|
|
| class PepperPlatformAudioInputImpl
|
| : public webkit::ppapi::PluginDelegate::PlatformAudioInput,
|
| @@ -23,8 +23,8 @@ class PepperPlatformAudioInputImpl
|
| // Factory function, returns NULL on failure. StreamCreated() will be called
|
| // when the stream is created.
|
| static PepperPlatformAudioInputImpl* Create(
|
| - uint32_t sample_rate,
|
| - uint32_t sample_count,
|
| + int sample_rate,
|
| + int frames_per_buffer,
|
| webkit::ppapi::PluginDelegate::PlatformAudioCommonClient* client);
|
|
|
| // PlatformAudioInput implementation (called on main thread).
|
| @@ -36,8 +36,8 @@ class PepperPlatformAudioInputImpl
|
| PepperPlatformAudioInputImpl();
|
|
|
| bool Initialize(
|
| - uint32_t sample_rate,
|
| - uint32_t sample_count,
|
| + int sample_rate,
|
| + int frames_per_buffer,
|
| webkit::ppapi::PluginDelegate::PlatformAudioCommonClient* client);
|
|
|
| // I/O thread backends to above functions.
|
|
|