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

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

Issue 2496193002: Implement transfer navigation with mojo (Closed)
Patch Set: fix 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 655d83fe80a4bde0b8343217f0838652104077a8..3d92dab8387bc29aeb0b14010c2b4b05dee1ec35 100644
--- a/content/browser/loader/resource_dispatcher_host_impl.h
+++ b/content/browser/loader/resource_dispatcher_host_impl.h
@@ -544,17 +544,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,
« no previous file with comments | « content/browser/loader/mojo_async_resource_handler.cc ('k') | content/browser/loader/resource_dispatcher_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698