| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index 9e15211fecddc2047ecbfd92bbe3600eccaa0524..f3f6e22a961704261ab6ba98dd9e2cee3cd65a74 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -2061,7 +2061,7 @@ void RenderFrameHostImpl::NavigateToInterstitialURL(const GURL& data_url) {
|
| base::TimeTicks::Now(), "GET");
|
| if (IsBrowserSideNavigationEnabled()) {
|
| CommitNavigation(nullptr, nullptr, common_params, RequestNavigationParams(),
|
| - false);
|
| + false, nullptr);
|
| } else {
|
| Navigate(common_params, StartNavigationParams(), RequestNavigationParams());
|
| }
|
| @@ -2192,7 +2192,8 @@ void RenderFrameHostImpl::CommitNavigation(
|
| std::unique_ptr<StreamHandle> body,
|
| const CommonNavigationParams& common_params,
|
| const RequestNavigationParams& request_params,
|
| - bool is_view_source) {
|
| + bool is_view_source,
|
| + scoped_refptr<ResourceRequestBody> post_data) {
|
| DCHECK((response && body.get()) ||
|
| !ShouldMakeNetworkRequestForURL(common_params.url));
|
| UpdatePermissionsForNavigation(common_params, request_params);
|
| @@ -2213,7 +2214,7 @@ void RenderFrameHostImpl::CommitNavigation(
|
| const ResourceResponseHead head = response ?
|
| response->head : ResourceResponseHead();
|
| Send(new FrameMsg_CommitNavigation(routing_id_, head, body_url, common_params,
|
| - request_params));
|
| + request_params, post_data));
|
|
|
| // If a network request was made, update the LoFi state.
|
| if (ShouldMakeNetworkRequestForURL(common_params.url))
|
|
|