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

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

Issue 2335133003: PlzNavigate: support the WebRequest API (Closed)
Patch Set: Rebase + addressed nit Created 4 years, 3 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..5e9f29d87ec027a454cbf068bbbc60b7de3da79e 100644
--- a/content/browser/loader/navigation_url_loader.cc
+++ b/content/browser/loader/navigation_url_loader.cc
@@ -9,6 +9,7 @@
#include "content/browser/frame_host/navigation_request_info.h"
#include "content/browser/loader/navigation_url_loader_factory.h"
#include "content/browser/loader/navigation_url_loader_impl.h"
+#include "content/public/browser/navigation_ui_data.h"
namespace content {
@@ -17,15 +18,17 @@ static NavigationURLLoaderFactory* g_factory = nullptr;
std::unique_ptr<NavigationURLLoader> NavigationURLLoader::Create(
BrowserContext* browser_context,
std::unique_ptr<NavigationRequestInfo> request_info,
+ std::unique_ptr<NavigationUIData> navigation_ui_data,
ServiceWorkerNavigationHandle* service_worker_handle,
NavigationURLLoaderDelegate* delegate) {
if (g_factory) {
return g_factory->CreateLoader(browser_context, std::move(request_info),
+ std::move(navigation_ui_data),
service_worker_handle, delegate);
}
- return std::unique_ptr<NavigationURLLoader>(
- new NavigationURLLoaderImpl(browser_context, std::move(request_info),
- service_worker_handle, delegate));
+ return std::unique_ptr<NavigationURLLoader>(new NavigationURLLoaderImpl(
+ browser_context, std::move(request_info), std::move(navigation_ui_data),
+ service_worker_handle, delegate));
}
void NavigationURLLoader::SetFactoryForTesting(
« no previous file with comments | « content/browser/loader/navigation_url_loader.h ('k') | content/browser/loader/navigation_url_loader_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698