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 df323f0d5004d6e176ed6992d29b8e72fdc7759a..707f6b8f1870a7a9174268e79a50e16ea1e657d5 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -47,6 +47,7 @@ |
#include "content/common/inter_process_time_ticks_converter.h" |
#include "content/common/navigation_params.h" |
#include "content/common/render_frame_setup.mojom.h" |
+#include "content/common/service_worker/service_worker_types.h" |
#include "content/common/site_isolation_policy.h" |
#include "content/common/swapped_out_messages.h" |
#include "content/public/browser/ax_event_notification_details.h" |
@@ -1697,7 +1698,8 @@ void RenderFrameHostImpl::NavigateToURL(const GURL& url) { |
CommonNavigationParams common_params( |
url, Referrer(), ui::PAGE_TRANSITION_LINK, FrameMsg_Navigate_Type::NORMAL, |
true, false, base::TimeTicks::Now(), |
- FrameMsg_UILoadMetricsReportType::NO_REPORT, GURL(), GURL()); |
+ FrameMsg_UILoadMetricsReportType::NO_REPORT, GURL(), GURL(), |
+ kInvalidServiceWorkerProviderId); |
Navigate(common_params, StartNavigationParams(), RequestNavigationParams()); |
} |