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

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

Issue 2501343003: PlzNavigate: AppCache support. (Closed)
Patch Set: Address review comments Created 4 years 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
« no previous file with comments | « content/browser/loader/navigation_url_loader.h ('k') | content/browser/loader/navigation_url_loader_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5e9f29d87ec027a454cbf068bbbc60b7de3da79e..8d9df17ab676b0d43e03855d40176123139822cc 100644
--- a/content/browser/loader/navigation_url_loader.cc
+++ b/content/browser/loader/navigation_url_loader.cc
@@ -20,6 +20,7 @@ std::unique_ptr<NavigationURLLoader> NavigationURLLoader::Create(
std::unique_ptr<NavigationRequestInfo> request_info,
std::unique_ptr<NavigationUIData> navigation_ui_data,
ServiceWorkerNavigationHandle* service_worker_handle,
+ AppCacheNavigationHandle* appcache_handle,
NavigationURLLoaderDelegate* delegate) {
if (g_factory) {
return g_factory->CreateLoader(browser_context, std::move(request_info),
@@ -28,7 +29,7 @@ std::unique_ptr<NavigationURLLoader> NavigationURLLoader::Create(
}
return std::unique_ptr<NavigationURLLoader>(new NavigationURLLoaderImpl(
browser_context, std::move(request_info), std::move(navigation_ui_data),
- service_worker_handle, delegate));
+ service_worker_handle, appcache_handle, delegate));
}
void NavigationURLLoader::SetFactoryForTesting(
« no previous file with comments | « content/browser/loader/navigation_url_loader.h ('k') | content/browser/loader/navigation_url_loader_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698