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

Unified Diff: content/common/request_extra_data.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/browser/tab_contents/tab_contents.cc ('k') | content/common/request_extra_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/request_extra_data.h
diff --git a/content/common/request_extra_data.h b/content/common/request_extra_data.h
index 2dc1b2a59855827cb0fa22889fc3a1f056909d85..b7ca525fed24a6480e17e694f22cff6cd5701d35 100644
--- a/content/common/request_extra_data.h
+++ b/content/common/request_extra_data.h
@@ -21,7 +21,9 @@ class CONTENT_EXPORT RequestExtraData
int64 frame_id,
bool parent_is_main_frame,
int64 parent_frame_id,
- content::PageTransition transition_type);
+ content::PageTransition transition_type,
+ int transferred_request_child_id,
+ int transferred_request_request_id);
virtual ~RequestExtraData();
bool is_main_frame() const { return is_main_frame_; }
@@ -29,6 +31,12 @@ class CONTENT_EXPORT RequestExtraData
bool parent_is_main_frame() const { return parent_is_main_frame_; }
int64 parent_frame_id() const { return parent_frame_id_; }
content::PageTransition transition_type() const { return transition_type_; }
+ int transferred_request_child_id() const {
+ return transferred_request_child_id_;
+ }
+ int transferred_request_request_id() const {
+ return transferred_request_request_id_;
+ }
private:
bool is_main_frame_;
@@ -36,6 +44,8 @@ class CONTENT_EXPORT RequestExtraData
bool parent_is_main_frame_;
int64 parent_frame_id_;
content::PageTransition transition_type_;
+ int transferred_request_child_id_;
+ int transferred_request_request_id_;
DISALLOW_COPY_AND_ASSIGN(RequestExtraData);
};
« no previous file with comments | « content/browser/tab_contents/tab_contents.cc ('k') | content/common/request_extra_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698