| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index 1c6011b0d55ee92f77906c65d2619f915dddf862..d234c3c1ea813ef576257100fb076e94a33197bb 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -1516,8 +1516,11 @@ int RenderProcessHostImpl::VisibleWidgetCount() const {
|
| return visible_widgets_;
|
| }
|
|
|
| -void RenderProcessHostImpl::AudioStateChanged() {
|
| +void RenderProcessHostImpl::AudioStateChanged(bool is_audio_active) {
|
| UpdateProcessPriority();
|
| +
|
| + // Notify the child process of audio state.
|
| + Send(new ChildProcessMsg_SetAudioPlaying(is_audio_active));
|
| }
|
|
|
| bool RenderProcessHostImpl::IsForGuestsOnly() const {
|
|
|