| Index: content/browser/loader/resource_dispatcher_host_impl.h
|
| diff --git a/content/browser/loader/resource_dispatcher_host_impl.h b/content/browser/loader/resource_dispatcher_host_impl.h
|
| index f9046ea05968bca38968300962f64599a08159d0..1470e878ee5b62c401a939989b9b83a64bc82767 100644
|
| --- a/content/browser/loader/resource_dispatcher_host_impl.h
|
| +++ b/content/browser/loader/resource_dispatcher_host_impl.h
|
| @@ -543,17 +543,22 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl
|
|
|
| // Update the ResourceRequestInfo and internal maps when a request is
|
| // transferred from one process to another.
|
| - void UpdateRequestForTransfer(int child_id,
|
| - int route_id,
|
| - int request_id,
|
| - const ResourceRequest& request_data,
|
| - LoaderMap::iterator iter);
|
| + void UpdateRequestForTransfer(
|
| + int child_id,
|
| + int route_id,
|
| + int request_id,
|
| + const ResourceRequest& request_data,
|
| + LoaderMap::iterator iter,
|
| + mojom::URLLoaderAssociatedRequest mojo_request,
|
| + mojom::URLLoaderClientAssociatedPtr url_loader_client);
|
|
|
| // If |request_data| is for a request being transferred from another process,
|
| // then CompleteTransfer method can be used to complete the transfer.
|
| void CompleteTransfer(int request_id,
|
| const ResourceRequest& request_data,
|
| - int route_id);
|
| + int route_id,
|
| + mojom::URLLoaderAssociatedRequest mojo_request,
|
| + mojom::URLLoaderClientAssociatedPtr url_loader_client);
|
|
|
| void BeginRequest(
|
| int request_id,
|
|
|