Index: content/browser/frame_host/navigation_entry_impl.cc |
diff --git a/content/browser/frame_host/navigation_entry_impl.cc b/content/browser/frame_host/navigation_entry_impl.cc |
index 1adb2be5d700a2f168971c42864488bf3594f81b..4af4679e92eb71d8ab4c528a15ca7d5bec84e570 100644 |
--- a/content/browser/frame_host/navigation_entry_impl.cc |
+++ b/content/browser/frame_host/navigation_entry_impl.cc |
@@ -441,7 +441,8 @@ CommonNavigationParams NavigationEntryImpl::ConstructCommonNavigationParams( |
const GURL& dest_url, |
const Referrer& dest_referrer, |
const FrameNavigationEntry& frame_entry, |
- FrameMsg_Navigate_Type::Value navigation_type) const { |
+ FrameMsg_Navigate_Type::Value navigation_type, |
+ int service_worker_provider_id) const { |
FrameMsg_UILoadMetricsReportType::Value report_type = |
FrameMsg_UILoadMetricsReportType::NO_REPORT; |
base::TimeTicks ui_timestamp = base::TimeTicks(); |
@@ -454,7 +455,8 @@ CommonNavigationParams NavigationEntryImpl::ConstructCommonNavigationParams( |
return CommonNavigationParams( |
dest_url, dest_referrer, GetTransitionType(), navigation_type, |
!IsViewSourceMode(), should_replace_entry(), ui_timestamp, report_type, |
- GetBaseURLForDataURL(), GetHistoryURLForDataURL()); |
+ GetBaseURLForDataURL(), GetHistoryURLForDataURL(), |
+ service_worker_provider_id); |
} |
StartNavigationParams NavigationEntryImpl::ConstructStartNavigationParams() |