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

Unified Diff: content/common/resource_messages.h

Issue 8669014: Fix a bug where redirect chain gets lost on process swap. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: conditional disabling Created 9 years 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
« no previous file with comments | « content/common/resource_dispatcher_unittest.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/resource_messages.h
diff --git a/content/common/resource_messages.h b/content/common/resource_messages.h
index 854290aa40c54ec2d4e38a6e1b4f1ebe9f3d28ab..523020611f0e78f2c0de19b80805e0534142224a 100644
--- a/content/common/resource_messages.h
+++ b/content/common/resource_messages.h
@@ -111,6 +111,13 @@ IPC_STRUCT_BEGIN(ResourceHostMsg_Request)
IPC_STRUCT_MEMBER(int64, parent_frame_id)
IPC_STRUCT_MEMBER(content::PageTransition, transition_type)
+
+ // The following two members identify a previous request that has been
+ // created before this navigation has been transferred to a new render view.
+ // This serves the purpose of recycling the old request.
+ // Unless this refers to a transferred navigation, these values are -1 and -1.
+ IPC_STRUCT_MEMBER(int, transferred_request_child_id)
+ IPC_STRUCT_MEMBER(int, transferred_request_request_id)
IPC_STRUCT_END()
// Resource messages sent from the browser to the renderer.
« no previous file with comments | « content/common/resource_dispatcher_unittest.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698