| 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..c3ff932cff22e3a03b50dad4cae5a2e3ad714bed 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_playing) {
|
| UpdateProcessPriority();
|
| +
|
| + // Notify the child process of audio state.
|
| + Send(new ChildProcessMsg_SetProcessAudible(is_playing));
|
| }
|
|
|
| bool RenderProcessHostImpl::IsForGuestsOnly() const {
|
|
|