Index: content/renderer/pepper/pepper_plugin_delegate_impl.cc |
diff --git a/content/renderer/pepper/pepper_plugin_delegate_impl.cc b/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
index 694eefdb5b93a48460214dcced21944bcea88f5a..921f533d7368f6952c9569e8f4d0f66d8064e8f0 100644 |
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
@@ -834,6 +834,7 @@ PepperPluginDelegateImpl::CreateAudioOutput( |
uint32_t sample_count, |
webkit::ppapi::PluginDelegate::PlatformAudioOutputClient* client) { |
return PepperPlatformAudioOutputImpl::Create( |
+ render_view_->GetRoutingID(), |
static_cast<int>(sample_rate), static_cast<int>(sample_count), client); |
} |
@@ -844,6 +845,7 @@ PepperPluginDelegateImpl::CreateAudioInput( |
uint32_t sample_count, |
webkit::ppapi::PluginDelegate::PlatformAudioInputClient* client) { |
return PepperPlatformAudioInputImpl::Create( |
+ render_view_->GetRoutingID(), |
AsWeakPtr(), device_id, static_cast<int>(sample_rate), |
static_cast<int>(sample_count), client); |
} |