Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(522)

Unified Diff: content/browser/loader/resource_dispatcher_host_impl.h

Issue 2496193002: Implement transfer navigation with mojo (Closed)
Patch Set: rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698