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

Side by Side Diff: remoting/base/url_request_context.cc

Issue 18460003: Move url_request_context from remoting/host/ to remoting/base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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 unified diff | Download patch
« no previous file with comments | « remoting/base/url_request_context.h ('k') | remoting/base/vlog_net_log.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/host/url_request_context.h" 5 #include "remoting/base/url_request_context.h"
6 6
7 #include "base/message_loop/message_loop_proxy.h" 7 #include "base/message_loop/message_loop_proxy.h"
8 #include "net/cert/cert_verifier.h" 8 #include "net/cert/cert_verifier.h"
9 #include "net/dns/host_resolver.h" 9 #include "net/dns/host_resolver.h"
10 #include "net/http/http_auth_handler_factory.h" 10 #include "net/http/http_auth_handler_factory.h"
11 #include "net/http/http_network_layer.h" 11 #include "net/http/http_network_layer.h"
12 #include "net/http/http_network_session.h" 12 #include "net/http/http_network_session.h"
13 #include "net/http/http_server_properties_impl.h" 13 #include "net/http/http_server_properties_impl.h"
14 #include "net/http/transport_security_state.h" 14 #include "net/http/transport_security_state.h"
15 #include "net/proxy/proxy_config_service.h" 15 #include "net/proxy/proxy_config_service.h"
16 #include "net/proxy/proxy_service.h" 16 #include "net/proxy/proxy_service.h"
17 #include "net/ssl/ssl_config_service_defaults.h" 17 #include "net/ssl/ssl_config_service_defaults.h"
18 #include "remoting/host/vlog_net_log.h" 18 #include "remoting/base/vlog_net_log.h"
19 19
20 #if defined(OS_WIN) 20 #if defined(OS_WIN)
21 #include "net/proxy/proxy_config_service_win.h" 21 #include "net/proxy/proxy_config_service_win.h"
22 #elif defined(OS_MACOSX) 22 #elif defined(OS_MACOSX)
23 #include "net/proxy/proxy_config_service_mac.h" 23 #include "net/proxy/proxy_config_service_mac.h"
24 #elif defined(OS_LINUX) && !defined(OS_CHROMEOS) 24 #elif defined(OS_LINUX) && !defined(OS_CHROMEOS)
25 #include "net/proxy/proxy_config_service_linux.h" 25 #include "net/proxy/proxy_config_service_linux.h"
26 #endif 26 #endif
27 27
28 namespace remoting { 28 namespace remoting {
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 130
131 scoped_refptr<base::SingleThreadTaskRunner> 131 scoped_refptr<base::SingleThreadTaskRunner>
132 URLRequestContextGetter::GetNetworkTaskRunner() const { 132 URLRequestContextGetter::GetNetworkTaskRunner() const {
133 return network_task_runner_; 133 return network_task_runner_;
134 } 134 }
135 135
136 URLRequestContextGetter::~URLRequestContextGetter() { 136 URLRequestContextGetter::~URLRequestContextGetter() {
137 } 137 }
138 138
139 } // namespace remoting 139 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/base/url_request_context.h ('k') | remoting/base/vlog_net_log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698