| Index: content/utility/utility_service_factory.cc
|
| diff --git a/content/utility/utility_service_factory.cc b/content/utility/utility_service_factory.cc
|
| index abe5f2882f4eca410bd08337141ae02744a56f5d..74ffbf52d692a18f01f85243cfc5bf2b17c855e5 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"
|
| @@ -134,7 +134,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
|
|
|