| 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 3c7c78633780345854cc5e09233fcab03f8dfdeb..d90794dd367a0dd7acc88106f2d2cdfec06ca8ce 100644
|
| --- a/content/browser/loader/resource_dispatcher_host_impl.cc
|
| +++ b/content/browser/loader/resource_dispatcher_host_impl.cc
|
| @@ -1174,6 +1174,19 @@ void ResourceDispatcherHostImpl::OnDidLoadResourceFromMemoryCache(
|
| GetCache()->OnExternalCacheHit(url, http_method);
|
| }
|
|
|
| +void ResourceDispatcherHostImpl::OnRenderViewHostCreated(
|
| + int child_id,
|
| + int route_id) {
|
| + scheduler_->OnClientCreated(child_id, route_id);
|
| +}
|
| +
|
| +void ResourceDispatcherHostImpl::OnRenderViewHostDeleted(
|
| + int child_id,
|
| + int route_id) {
|
| + scheduler_->OnClientDeleted(child_id, route_id);
|
| + CancelRequestsForRoute(child_id, route_id);
|
| +}
|
| +
|
| // This function is only used for saving feature.
|
| void ResourceDispatcherHostImpl::BeginSaveFile(
|
| const GURL& url,
|
|
|