| 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(
|
|
|