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), |