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

Unified Diff: content/network/network_service_impl.cc

Issue 2968293002: Introduce SystemNetworkContextManager. (Closed)
Patch Set: Response to comments Created 3 years, 5 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
« no previous file with comments | « content/network/network_service_impl.h ('k') | content/network/network_service_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/network/network_service_impl.cc
diff --git a/content/network/network_service.cc b/content/network/network_service_impl.cc
similarity index 61%
rename from content/network/network_service.cc
rename to content/network/network_service_impl.cc
index a9a8845498b57a8026c2b9ab669c80f8c97896b2..d2b53bee0e1fef73d1fc929db20f2bde3f414f01 100644
--- a/content/network/network_service.cc
+++ b/content/network/network_service_impl.cc
@@ -2,22 +2,28 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/network/network_service.h"
+#include "content/network/network_service_impl.h"
#include "base/command_line.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/values.h"
+#include "build/build_config.h"
#include "content/network/network_context.h"
#include "content/public/common/content_switches.h"
#include "mojo/public/cpp/bindings/strong_binding.h"
#include "net/log/file_net_log_observer.h"
#include "net/log/net_log_util.h"
+#include "net/url_request/url_request_context_builder.h"
#include "services/service_manager/public/cpp/bind_source_info.h"
namespace content {
-class NetworkService::MojoNetLog : public net::NetLog {
+std::unique_ptr<NetworkService> NetworkService::Create() {
+ return base::MakeUnique<NetworkServiceImpl>(nullptr);
+}
+
+class NetworkServiceImpl::MojoNetLog : public net::NetLog {
public:
MojoNetLog() {
const base::CommandLine* command_line =
@@ -46,17 +52,20 @@ class NetworkService::MojoNetLog : public net::NetLog {
DISALLOW_COPY_AND_ASSIGN(MojoNetLog);
};
-NetworkService::NetworkService(
+NetworkServiceImpl::NetworkServiceImpl(
std::unique_ptr<service_manager::BinderRegistry> registry)
: net_log_(new MojoNetLog), registry_(std::move(registry)), binding_(this) {
- // |registry_| may be nullptr in tests.
+ // |registry_| is nullptr in tests and when an in-process NetworkService is
+ // created directly. The latter is done in concert with using
+ // CreateNetworkContextWithBuilder to ease the transition to using the network
+ // service.
if (registry_) {
registry_->AddInterface<mojom::NetworkService>(
- base::Bind(&NetworkService::Create, base::Unretained(this)));
+ base::Bind(&NetworkServiceImpl::Create, base::Unretained(this)));
}
}
-NetworkService::~NetworkService() {
+NetworkServiceImpl::~NetworkServiceImpl() {
// Call each Network and ask it to release its net::URLRequestContext, as they
// may have references to shared objects owned by the NetworkService. The
// NetworkContexts deregister themselves in Cleanup(), so have to be careful.
@@ -64,21 +73,36 @@ NetworkService::~NetworkService() {
(*network_contexts_.begin())->Cleanup();
}
-std::unique_ptr<NetworkService> NetworkService::CreateForTesting() {
- return base::WrapUnique(new NetworkService());
+std::unique_ptr<mojom::NetworkContext>
+NetworkServiceImpl::CreateNetworkContextWithBuilder(
+ content::mojom::NetworkContextRequest request,
+ content::mojom::NetworkContextParamsPtr params,
+ std::unique_ptr<net::URLRequestContextBuilder> builder,
+ net::URLRequestContext** url_request_context) {
+ std::unique_ptr<NetworkContext> network_context =
+ base::MakeUnique<NetworkContext>(std::move(request), std::move(params),
+ std::move(builder));
+ *url_request_context = network_context->url_request_context();
+ return network_context;
+}
+
+std::unique_ptr<NetworkService> NetworkServiceImpl::CreateForTesting() {
+ return base::WrapUnique(new NetworkServiceImpl(nullptr));
}
-void NetworkService::RegisterNetworkContext(NetworkContext* network_context) {
+void NetworkServiceImpl::RegisterNetworkContext(
+ NetworkContext* network_context) {
DCHECK_EQ(0u, network_contexts_.count(network_context));
network_contexts_.insert(network_context);
}
-void NetworkService::DeregisterNetworkContext(NetworkContext* network_context) {
+void NetworkServiceImpl::DeregisterNetworkContext(
+ NetworkContext* network_context) {
DCHECK_EQ(1u, network_contexts_.count(network_context));
network_contexts_.erase(network_context);
}
-void NetworkService::CreateNetworkContext(
+void NetworkServiceImpl::CreateNetworkContext(
mojom::NetworkContextRequest request,
mojom::NetworkContextParamsPtr params) {
// The NetworkContext will destroy itself on connection error, or when the
@@ -86,9 +110,7 @@ void NetworkService::CreateNetworkContext(
new NetworkContext(this, std::move(request), std::move(params));
}
-NetworkService::NetworkService() : NetworkService(nullptr) {}
-
-void NetworkService::OnBindInterface(
+void NetworkServiceImpl::OnBindInterface(
const service_manager::BindSourceInfo& source_info,
const std::string& interface_name,
mojo::ScopedMessagePipeHandle interface_pipe) {
@@ -96,8 +118,9 @@ void NetworkService::OnBindInterface(
std::move(interface_pipe));
}
-void NetworkService::Create(const service_manager::BindSourceInfo& source_info,
- mojom::NetworkServiceRequest request) {
+void NetworkServiceImpl::Create(
+ const service_manager::BindSourceInfo& source_info,
+ mojom::NetworkServiceRequest request) {
DCHECK(!binding_.is_bound());
binding_.Bind(std::move(request));
}
« no previous file with comments | « content/network/network_service_impl.h ('k') | content/network/network_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698