| 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 0dd7fe22c82cc86cb228513199456bb38d57a2ca..8ade26b5b9946c836daa40d9972301296dcabf2b 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,
|
| ServiceWorkerContextWrapper* service_worker_context_wrapper,
|
| NavigationURLLoaderDelegate* delegate) {
|
| if (g_factory) {
|
| return g_factory->CreateLoader(browser_context, std::move(request_info),
|
| + std::move(navigation_ui_data),
|
| service_worker_context_wrapper, delegate);
|
| }
|
| - return std::unique_ptr<NavigationURLLoader>(
|
| - new NavigationURLLoaderImpl(browser_context, std::move(request_info),
|
| - service_worker_context_wrapper, delegate));
|
| + return std::unique_ptr<NavigationURLLoader>(new NavigationURLLoaderImpl(
|
| + browser_context, std::move(request_info), std::move(navigation_ui_data),
|
| + service_worker_context_wrapper, delegate));
|
| }
|
|
|
| void NavigationURLLoader::SetFactoryForTesting(
|
|
|