diff options
Diffstat (limited to 'content/browser/frame_host/navigator_impl.cc')
-rw-r--r-- | content/browser/frame_host/navigator_impl.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/content/browser/frame_host/navigator_impl.cc b/content/browser/frame_host/navigator_impl.cc index 91c3a6d..d3f94c7 100644 --- a/content/browser/frame_host/navigator_impl.cc +++ b/content/browser/frame_host/navigator_impl.cc @@ -328,7 +328,9 @@ bool NavigatorImpl::NavigateToEntry( entry.ConstructCommonNavigationParams(navigation_type), entry.ConstructStartNavigationParams(), entry.ConstructRequestNavigationParams( - navigation_start, controller_->GetIndexOfEntry(&entry), + navigation_start, + controller_->GetPendingEntryIndex() == -1, + controller_->GetIndexOfEntry(&entry), controller_->GetLastCommittedEntryIndex(), controller_->GetEntryCount())); } else { |