| Index: content/browser/frame_host/navigator_impl.cc
|
| diff --git a/content/browser/frame_host/navigator_impl.cc b/content/browser/frame_host/navigator_impl.cc
|
| index 5e54fdf04c281aa736aa58cb2fcaea1b32fb296a..d6647fdba9cc1c5af438e6bd9413797468b7b5b2 100644
|
| --- a/content/browser/frame_host/navigator_impl.cc
|
| +++ b/content/browser/frame_host/navigator_impl.cc
|
| @@ -676,7 +676,8 @@ void NavigatorImpl::OnBeginNavigation(
|
| // PlzNavigate
|
| void NavigatorImpl::CommitNavigation(FrameTreeNode* frame_tree_node,
|
| ResourceResponse* response,
|
| - scoped_ptr<StreamHandle> body) {
|
| + scoped_ptr<StreamHandle> body,
|
| + int navigation_provider_id) {
|
| CHECK(base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kEnableBrowserSideNavigation));
|
|
|
| @@ -714,10 +715,9 @@ void NavigatorImpl::CommitNavigation(FrameTreeNode* frame_tree_node,
|
| CheckWebUIRendererDoesNotDisplayNormalURL(
|
| render_frame_host, navigation_request->common_params().url);
|
|
|
| - render_frame_host->CommitNavigation(response, body.Pass(),
|
| - navigation_request->common_params(),
|
| - navigation_request->request_params());
|
| -
|
| + render_frame_host->CommitNavigation(
|
| + response, body.Pass(), navigation_request->common_params(),
|
| + navigation_request->request_params(), navigation_provider_id);
|
| }
|
|
|
| // PlzNavigate
|
|
|