Index: content/browser/frame_host/navigation_request.cc |
diff --git a/content/browser/frame_host/navigation_request.cc b/content/browser/frame_host/navigation_request.cc |
index df0f7a1e7b7128331b36debd5882b31dd4f37bd5..2d812ed3817497b226176ab5b4bfcc8389a1c014 100644 |
--- a/content/browser/frame_host/navigation_request.cc |
+++ b/content/browser/frame_host/navigation_request.cc |
@@ -226,9 +226,10 @@ void NavigationRequest::BeginNavigation() { |
frame_tree_node_, nullptr, scoped_ptr<StreamHandle>()); |
} |
-void NavigationRequest::CreateNavigationHandle() { |
- navigation_handle_ = NavigationHandleImpl::Create( |
- common_params_.url, frame_tree_node_, common_params_.navigation_start); |
+void NavigationRequest::CreateNavigationHandle(const NavigationEntry* entry) { |
+ navigation_handle_ = |
+ NavigationHandleImpl::Create(common_params_.url, frame_tree_node_, |
+ common_params_.navigation_start, entry); |
} |
void NavigationRequest::TransferNavigationHandleOwnership( |