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 75a5236d4267b8a0cb2f1886978ba058845ae82d..52b6bb0e035d8ce63e3b8cf3980887e698648cd5 100644 |
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
@@ -765,7 +765,10 @@ PepperPluginDelegateImpl::CreateAudioOutput( |
uint32_t sample_count, |
webkit::ppapi::PluginDelegate::PlatformAudioOutputClient* client) { |
return PepperPlatformAudioOutputImpl::Create( |
- static_cast<int>(sample_rate), static_cast<int>(sample_count), client); |
+ render_view_, |
+ static_cast<int>(sample_rate), |
+ static_cast<int>(sample_count), |
+ client); |
} |
webkit::ppapi::PluginDelegate::PlatformAudioInput* |