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

Unified Diff: content/browser/renderer_host/transfer_navigation_resource_throttle.cc

Issue 10501004: Refactor the guts of ResourceDispatcherHostImpl into a new class named (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 months 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/renderer_host/transfer_navigation_resource_throttle.cc
===================================================================
--- content/browser/renderer_host/transfer_navigation_resource_throttle.cc (revision 141889)
+++ content/browser/renderer_host/transfer_navigation_resource_throttle.cc (working copy)
@@ -63,9 +63,10 @@
resource_context, request_->url(), new_url)) {
int render_process_id, render_view_id;
if (info->GetAssociatedRenderView(&render_process_id, &render_view_id)) {
- ResourceDispatcherHostImpl::Get()->MarkAsTransferredNavigation(request_);
+ GlobalRequestID global_id(info->GetChildID(), info->GetRequestID());
- GlobalRequestID global_id(info->GetChildID(), info->GetRequestID());
+ ResourceDispatcherHostImpl::Get()->MarkAsTransferredNavigation(global_id);
+
BrowserThread::PostTask(
BrowserThread::UI,
FROM_HERE,

Powered by Google App Engine
This is Rietveld 408576698