Index: content/browser/frame_host/navigation_handle_impl.cc |
diff --git a/content/browser/frame_host/navigation_handle_impl.cc b/content/browser/frame_host/navigation_handle_impl.cc |
index 7cec5bf579bf362f9775f87bbadcb8483579a38b..535d7c9588b8e42da0b0ff25f3d0c55a617db04d 100644 |
--- a/content/browser/frame_host/navigation_handle_impl.cc |
+++ b/content/browser/frame_host/navigation_handle_impl.cc |
@@ -33,15 +33,17 @@ void UpdateThrottleCheckResult( |
scoped_ptr<NavigationHandleImpl> NavigationHandleImpl::Create( |
const GURL& url, |
FrameTreeNode* frame_tree_node, |
- const base::TimeTicks& navigation_start) { |
- return scoped_ptr<NavigationHandleImpl>( |
- new NavigationHandleImpl(url, frame_tree_node, navigation_start)); |
+ const base::TimeTicks& navigation_start, |
+ int pending_nav_entry_id) { |
+ return scoped_ptr<NavigationHandleImpl>(new NavigationHandleImpl( |
+ url, frame_tree_node, navigation_start, pending_nav_entry_id)); |
} |
NavigationHandleImpl::NavigationHandleImpl( |
const GURL& url, |
FrameTreeNode* frame_tree_node, |
- const base::TimeTicks& navigation_start) |
+ const base::TimeTicks& navigation_start, |
+ int pending_nav_entry_id) |
: url_(url), |
is_post_(false), |
has_user_gesture_(false), |
@@ -54,7 +56,8 @@ NavigationHandleImpl::NavigationHandleImpl( |
is_transferring_(false), |
frame_tree_node_(frame_tree_node), |
next_index_(0), |
- navigation_start_(navigation_start) { |
+ navigation_start_(navigation_start), |
+ pending_nav_entry_id_(pending_nav_entry_id) { |
DCHECK(!navigation_start.is_null()); |
GetDelegate()->DidStartNavigation(this); |
} |