Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(515)

Unified Diff: content/browser/loader/navigation_url_loader.cc

Issue 2045383002: PlzNavigate: detect when a ServiceWorker is present (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(

Powered by Google App Engine
This is Rietveld 408576698