| Index: content/utility/utility_service_factory.cc
|
| diff --git a/content/utility/utility_service_factory.cc b/content/utility/utility_service_factory.cc
|
| index 5678a1b9a09ffa30a294bd5b58e7785cfd4df7b9..7cb64c316ed428d41d9d8f2a545fad0e02b01a0a 100644
|
| --- a/content/utility/utility_service_factory.cc
|
| +++ b/content/utility/utility_service_factory.cc
|
| @@ -7,7 +7,7 @@
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| #include "content/child/child_process.h"
|
| -#include "content/network/network_service.h"
|
| +#include "content/network/network_service_impl.h"
|
| #include "content/public/common/content_client.h"
|
| #include "content/public/common/content_features.h"
|
| #include "content/public/common/content_switches.h"
|
| @@ -133,7 +133,7 @@ void UtilityServiceFactory::OnLoadFailed() {
|
|
|
| std::unique_ptr<service_manager::Service>
|
| UtilityServiceFactory::CreateNetworkService() {
|
| - return base::MakeUnique<NetworkService>(std::move(network_registry_));
|
| + return base::MakeUnique<NetworkServiceImpl>(std::move(network_registry_));
|
| }
|
|
|
| } // namespace content
|
|
|