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

Unified Diff: content/child/request_extra_data.h

Issue 184873004: Update resource requests to remove redundant frame ID. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update comments Created 6 years, 10 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
« no previous file with comments | « content/child/npapi/plugin_url_fetcher.cc ('k') | content/child/request_extra_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/request_extra_data.h
diff --git a/content/child/request_extra_data.h b/content/child/request_extra_data.h
index 3b716196e600f0bc4bbe900ed788147679bb411e..2d864c545716295e3dbb9d7ac394fb174dcaf24e 100644
--- a/content/child/request_extra_data.h
+++ b/content/child/request_extra_data.h
@@ -23,10 +23,9 @@ class CONTENT_EXPORT RequestExtraData
bool was_after_preconnect_request,
int render_frame_id,
bool is_main_frame,
- int64 frame_id,
const GURL& frame_origin,
bool parent_is_main_frame,
- int64 parent_frame_id,
+ int parent_render_frame_id,
bool allow_download,
PageTransition transition_type,
bool should_replace_current_entry,
@@ -39,10 +38,9 @@ class CONTENT_EXPORT RequestExtraData
}
int render_frame_id() const { return render_frame_id_; }
bool is_main_frame() const { return is_main_frame_; }
- int64 frame_id() const { return frame_id_; }
GURL frame_origin() const { return frame_origin_; }
bool parent_is_main_frame() const { return parent_is_main_frame_; }
- int64 parent_frame_id() const { return parent_frame_id_; }
+ int parent_render_frame_id() const { return parent_render_frame_id_; }
bool allow_download() const { return allow_download_; }
PageTransition transition_type() const { return transition_type_; }
bool should_replace_current_entry() const {
@@ -59,10 +57,9 @@ class CONTENT_EXPORT RequestExtraData
blink::WebPageVisibilityState visibility_state_;
int render_frame_id_;
bool is_main_frame_;
- int64 frame_id_;
GURL frame_origin_;
bool parent_is_main_frame_;
- int64 parent_frame_id_;
+ int parent_render_frame_id_;
bool allow_download_;
PageTransition transition_type_;
bool should_replace_current_entry_;
« no previous file with comments | « content/child/npapi/plugin_url_fetcher.cc ('k') | content/child/request_extra_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698