Index: content/browser/loader/navigation_url_loader.cc |
diff --git a/content/browser/loader/navigation_url_loader.cc b/content/browser/loader/navigation_url_loader.cc |
index d9b0c9275430f7c5cffc332ecd3e5642f30f16c7..0dd7fe22c82cc86cb228513199456bb38d57a2ca 100644 |
--- a/content/browser/loader/navigation_url_loader.cc |
+++ b/content/browser/loader/navigation_url_loader.cc |
@@ -17,15 +17,15 @@ static NavigationURLLoaderFactory* g_factory = nullptr; |
std::unique_ptr<NavigationURLLoader> NavigationURLLoader::Create( |
BrowserContext* browser_context, |
std::unique_ptr<NavigationRequestInfo> request_info, |
- ServiceWorkerNavigationHandle* service_worker_handle, |
+ ServiceWorkerContextWrapper* service_worker_context_wrapper, |
NavigationURLLoaderDelegate* delegate) { |
if (g_factory) { |
return g_factory->CreateLoader(browser_context, std::move(request_info), |
- service_worker_handle, delegate); |
+ service_worker_context_wrapper, delegate); |
} |
return std::unique_ptr<NavigationURLLoader>( |
new NavigationURLLoaderImpl(browser_context, std::move(request_info), |
- service_worker_handle, delegate)); |
+ service_worker_context_wrapper, delegate)); |
} |
void NavigationURLLoader::SetFactoryForTesting( |