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

Side by Side Diff: net/proxy/proxy_service_v8.cc

Issue 1126513002: Add ProxyResolverFactoryV8Tracing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-proxy-refactor
Patch Set: Created 5 years, 7 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
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 "net/proxy/proxy_service_v8.h" 5 #include "net/proxy/proxy_service_v8.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/threading/thread_checker.h" 8 #include "base/threading/thread_checker.h"
9 #include "net/proxy/network_delegate_error_observer.h" 9 #include "net/proxy/network_delegate_error_observer.h"
10 #include "net/proxy/proxy_resolver.h" 10 #include "net/proxy/proxy_resolver.h"
11 #include "net/proxy/proxy_resolver_factory.h" 11 #include "net/proxy/proxy_resolver_factory.h"
12 #include "net/proxy/proxy_resolver_v8_tracing.h" 12 #include "net/proxy/proxy_resolver_v8_tracing.h"
13 #include "net/proxy/proxy_service.h" 13 #include "net/proxy/proxy_service.h"
14 14
15 namespace net { 15 namespace net {
16 namespace {
17
18 class ProxyResolverFactoryForV8Resolver : public LegacyProxyResolverFactory {
19 public:
20 explicit ProxyResolverFactoryForV8Resolver(HostResolver* host_resolver,
21 NetLog* net_log,
22 NetworkDelegate* network_delegate)
23 : LegacyProxyResolverFactory(true),
24 host_resolver_(host_resolver),
25 net_log_(net_log),
26 network_delegate_(network_delegate) {}
27
28 // LegacyProxyResolverFactory override.
29 scoped_ptr<ProxyResolver> CreateProxyResolver() override {
30 DCHECK(thread_checker_.CalledOnValidThread());
31 ProxyResolverErrorObserver* error_observer =
32 new NetworkDelegateErrorObserver(
33 network_delegate_, base::MessageLoopProxy::current().get());
34 return make_scoped_ptr(
35 new ProxyResolverV8Tracing(host_resolver_, error_observer, net_log_));
36 }
37
38 private:
39 HostResolver* const host_resolver_;
40 NetLog* const net_log_;
41 NetworkDelegate* const network_delegate_;
42
43 base::ThreadChecker thread_checker_;
44
45 DISALLOW_COPY_AND_ASSIGN(ProxyResolverFactoryForV8Resolver);
46 };
47 } // namespace
48 16
49 // static 17 // static
50 ProxyService* CreateProxyServiceUsingV8ProxyResolver( 18 ProxyService* CreateProxyServiceUsingV8ProxyResolver(
51 ProxyConfigService* proxy_config_service, 19 ProxyConfigService* proxy_config_service,
52 ProxyScriptFetcher* proxy_script_fetcher, 20 ProxyScriptFetcher* proxy_script_fetcher,
53 DhcpProxyScriptFetcher* dhcp_proxy_script_fetcher, 21 DhcpProxyScriptFetcher* dhcp_proxy_script_fetcher,
54 HostResolver* host_resolver, 22 HostResolver* host_resolver,
55 NetLog* net_log, 23 NetLog* net_log,
56 NetworkDelegate* network_delegate) { 24 NetworkDelegate* network_delegate) {
57 DCHECK(proxy_config_service); 25 DCHECK(proxy_config_service);
58 DCHECK(proxy_script_fetcher); 26 DCHECK(proxy_script_fetcher);
59 DCHECK(dhcp_proxy_script_fetcher); 27 DCHECK(dhcp_proxy_script_fetcher);
60 DCHECK(host_resolver); 28 DCHECK(host_resolver);
61 29
62 ProxyService* proxy_service = 30 ProxyService* proxy_service = new ProxyService(
63 new ProxyService(proxy_config_service, 31 proxy_config_service,
64 make_scoped_ptr(new ProxyResolverFactoryForV8Resolver( 32 make_scoped_ptr(new ProxyResolverFactoryV8Tracing(
65 host_resolver, net_log, network_delegate)), 33 host_resolver, net_log, ProxyResolver::LoadStateChangedCallback(),
66 net_log); 34 base::Bind(&NetworkDelegateErrorObserver::Create, network_delegate,
35 base::MessageLoopProxy::current()))),
36 net_log);
67 37
68 // Configure fetchers to use for PAC script downloads and auto-detect. 38 // Configure fetchers to use for PAC script downloads and auto-detect.
69 proxy_service->SetProxyScriptFetchers(proxy_script_fetcher, 39 proxy_service->SetProxyScriptFetchers(proxy_script_fetcher,
70 dhcp_proxy_script_fetcher); 40 dhcp_proxy_script_fetcher);
71 41
72 return proxy_service; 42 return proxy_service;
73 } 43 }
74 44
75 } // namespace net 45 } // namespace net
OLDNEW
« net/proxy/proxy_resolver_v8_tracing.cc ('K') | « net/proxy/proxy_resolver_v8_tracing_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698