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

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

Issue 30323002: [DRAFT] Create RenderFrameHostManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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
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..a42488aebdf858db0c398c5bf32bc63a5907ce54 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),

Powered by Google App Engine
This is Rietveld 408576698