| Index: content/browser/loader/resource_dispatcher_host_impl.cc
|
| diff --git a/content/browser/loader/resource_dispatcher_host_impl.cc b/content/browser/loader/resource_dispatcher_host_impl.cc
|
| index c49bfe9a4c3b6431a9fe5a5ae1210af8e5608e0f..28a8531991ac930a04f38829b3ea7dd1b662d6b6 100644
|
| --- a/content/browser/loader/resource_dispatcher_host_impl.cc
|
| +++ b/content/browser/loader/resource_dispatcher_host_impl.cc
|
| @@ -1350,11 +1350,11 @@ ResourceRequestInfoImpl* ResourceDispatcherHostImpl::CreateRequestInfo(
|
| true); // is_async
|
| }
|
|
|
| -void ResourceDispatcherHostImpl::OnRenderViewHostCreated(
|
| - int child_id,
|
| - int route_id,
|
| - bool is_visible) {
|
| - scheduler_->OnClientCreated(child_id, route_id, is_visible);
|
| +void ResourceDispatcherHostImpl::OnRenderViewHostCreated(int child_id,
|
| + int route_id,
|
| + bool is_visible,
|
| + bool is_audible) {
|
| + scheduler_->OnClientCreated(child_id, route_id, is_visible, is_audible);
|
| }
|
|
|
| void ResourceDispatcherHostImpl::OnRenderViewHostDeleted(
|
| @@ -1382,6 +1382,13 @@ void ResourceDispatcherHostImpl::OnRenderViewHostWasShown(
|
| scheduler_->OnVisibilityChanged(child_id, route_id, true);
|
| }
|
|
|
| +void ResourceDispatcherHostImpl::OnAudioRenderHostStreamStateChanged(
|
| + int child_id,
|
| + int route_id,
|
| + bool is_playing) {
|
| + scheduler_->OnAudibilityChanged(child_id, route_id, is_playing);
|
| +}
|
| +
|
| // This function is only used for saving feature.
|
| void ResourceDispatcherHostImpl::BeginSaveFile(
|
| const GURL& url,
|
|
|