Index: content/browser/service_worker/service_worker_navigation_handle_core.cc |
diff --git a/content/browser/service_worker/service_worker_navigation_handle_core.cc b/content/browser/service_worker/service_worker_navigation_handle_core.cc |
index 279461f8e8f06d4d49240f3ee8cc714eeb9dd099..d318dfafe302bd7bbbfe9bcfd5ac3794d7964e78 100644 |
--- a/content/browser/service_worker/service_worker_navigation_handle_core.cc |
+++ b/content/browser/service_worker/service_worker_navigation_handle_core.cc |
@@ -18,8 +18,11 @@ namespace content { |
ServiceWorkerNavigationHandleCore::ServiceWorkerNavigationHandleCore( |
base::WeakPtr<ServiceWorkerNavigationHandle> ui_handle, |
- ServiceWorkerContextWrapper* context_wrapper) |
- : context_wrapper_(context_wrapper), ui_handle_(ui_handle) { |
+ ServiceWorkerContextWrapper* context_wrapper, |
+ const MojoURLLoaderFactoryGetter& url_loader_factory_getter) |
+ : context_wrapper_(context_wrapper), |
+ ui_handle_(ui_handle), |
+ url_loader_factory_getter_(url_loader_factory_getter) { |
// The ServiceWorkerNavigationHandleCore is created on the UI thread but |
// should only be accessed from the IO thread afterwards. |
DCHECK_CURRENTLY_ON(BrowserThread::UI); |