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

Unified Diff: content/public/browser/navigation_controller.cc

Issue 77673003: Add frame_tree_node_id to navigation parameters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix comments Created 7 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
« no previous file with comments | « content/public/browser/navigation_controller.h ('k') | content/public/browser/page_navigator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/navigation_controller.cc
diff --git a/content/public/browser/navigation_controller.cc b/content/public/browser/navigation_controller.cc
index e88ba9e77f08fd610f8a182e1c793ee356de3a08..f0b3f46cc5074ae23ca5a11914b990366e47c24d 100644
--- a/content/public/browser/navigation_controller.cc
+++ b/content/public/browser/navigation_controller.cc
@@ -12,6 +12,7 @@ NavigationController::LoadURLParams::LoadURLParams(const GURL& url)
: url(url),
load_type(LOAD_TYPE_DEFAULT),
transition_type(PAGE_TRANSITION_LINK),
+ frame_tree_node_id(-1),
is_renderer_initiated(false),
override_user_agent(UA_OVERRIDE_INHERIT),
browser_initiated_post_data(NULL),
@@ -28,6 +29,7 @@ NavigationController::LoadURLParams::LoadURLParams(
: url(other.url),
load_type(other.load_type),
transition_type(other.transition_type),
+ frame_tree_node_id(other.frame_tree_node_id),
referrer(other.referrer),
extra_headers(other.extra_headers),
is_renderer_initiated(other.is_renderer_initiated),
@@ -46,6 +48,7 @@ NavigationController::LoadURLParams::operator=(
url = other.url;
load_type = other.load_type;
transition_type = other.transition_type;
+ frame_tree_node_id = other.frame_tree_node_id;
referrer = other.referrer;
redirect_chain = other.redirect_chain;
extra_headers = other.extra_headers;
« no previous file with comments | « content/public/browser/navigation_controller.h ('k') | content/public/browser/page_navigator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698