| 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 b2be362dfb61d9b6904098078d4c62f5f2c1cbc6..c70e020ff09c609ea587078535e78a8194d6d5f2 100644
|
| --- a/content/browser/frame_host/navigator_impl.cc
|
| +++ b/content/browser/frame_host/navigator_impl.cc
|
| @@ -22,6 +22,7 @@
|
| #include "content/browser/webui/web_ui_impl.h"
|
| #include "content/common/frame_messages.h"
|
| #include "content/common/navigation_params.h"
|
| +#include "content/common/service_worker/service_worker_types.h"
|
| #include "content/common/site_isolation_policy.h"
|
| #include "content/common/view_messages.h"
|
| #include "content/public/browser/browser_context.h"
|
| @@ -335,7 +336,8 @@ bool NavigatorImpl::NavigateToEntry(
|
| GetNavigationType(controller_->GetBrowserContext(), entry, reload_type);
|
| dest_render_frame_host->Navigate(
|
| entry.ConstructCommonNavigationParams(dest_url, dest_referrer,
|
| - frame_entry, navigation_type),
|
| + frame_entry, navigation_type,
|
| + kInvalidServiceWorkerProviderId),
|
| entry.ConstructStartNavigationParams(),
|
| entry.ConstructRequestNavigationParams(
|
| frame_entry, navigation_start, is_same_document_history_load,
|
| @@ -741,7 +743,6 @@ void NavigatorImpl::CommitNavigation(FrameTreeNode* frame_tree_node,
|
| render_frame_host->CommitNavigation(response, body.Pass(),
|
| navigation_request->common_params(),
|
| navigation_request->request_params());
|
| -
|
| }
|
|
|
| // PlzNavigate
|
|
|