| Index: content/renderer/pepper/pepper_platform_audio_output_impl.cc
|
| diff --git a/content/renderer/pepper/pepper_platform_audio_output_impl.cc b/content/renderer/pepper/pepper_platform_audio_output_impl.cc
|
| index d3c3715cdd40f65874ce33230957c654b4768e7f..599b54fd1504c5de310ede9389da765662f63c44 100644
|
| --- a/content/renderer/pepper/pepper_platform_audio_output_impl.cc
|
| +++ b/content/renderer/pepper/pepper_platform_audio_output_impl.cc
|
| @@ -31,7 +31,7 @@ PepperPlatformAudioOutputImpl::~PepperPlatformAudioOutputImpl() {
|
| PepperPlatformAudioOutputImpl* PepperPlatformAudioOutputImpl::Create(
|
| uint32_t sample_rate,
|
| uint32_t sample_count,
|
| - webkit::ppapi::PluginDelegate::PlatformAudioCommonClient* client) {
|
| + webkit::ppapi::PluginDelegate::PlatformAudioOutputClient* client) {
|
| scoped_refptr<PepperPlatformAudioOutputImpl> audio_output(
|
| new PepperPlatformAudioOutputImpl);
|
| if (audio_output->Initialize(sample_rate, sample_count, client)) {
|
| @@ -76,7 +76,7 @@ void PepperPlatformAudioOutputImpl::ShutDown() {
|
| bool PepperPlatformAudioOutputImpl::Initialize(
|
| uint32_t sample_rate,
|
| uint32_t sample_count,
|
| - webkit::ppapi::PluginDelegate::PlatformAudioCommonClient* client) {
|
| + webkit::ppapi::PluginDelegate::PlatformAudioOutputClient* client) {
|
| DCHECK(client);
|
| // Make sure we don't call init more than once.
|
| DCHECK_EQ(0, stream_id_);
|
|
|