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

Side by Side Diff: chrome/browser/io_thread.h

Issue 8944001: net: remove DNS certificate checking code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | chrome/browser/io_thread.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_IO_THREAD_H_ 5 #ifndef CHROME_BROWSER_IO_THREAD_H_
6 #define CHROME_BROWSER_IO_THREAD_H_ 6 #define CHROME_BROWSER_IO_THREAD_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 11 matching lines...) Expand all
22 class ChromeNetLog; 22 class ChromeNetLog;
23 class ExtensionEventRouterForwarder; 23 class ExtensionEventRouterForwarder;
24 class MediaInternals; 24 class MediaInternals;
25 class PrefProxyConfigTrackerImpl; 25 class PrefProxyConfigTrackerImpl;
26 class PrefService; 26 class PrefService;
27 class SystemURLRequestContextGetter; 27 class SystemURLRequestContextGetter;
28 28
29 namespace net { 29 namespace net {
30 class CertVerifier; 30 class CertVerifier;
31 class CookieStore; 31 class CookieStore;
32 class DnsRRResolver;
33 class FtpTransactionFactory; 32 class FtpTransactionFactory;
34 class HostResolver; 33 class HostResolver;
35 class HttpAuthHandlerFactory; 34 class HttpAuthHandlerFactory;
36 class HttpServerProperties; 35 class HttpServerProperties;
37 class HttpTransactionFactory; 36 class HttpTransactionFactory;
38 class NetworkDelegate; 37 class NetworkDelegate;
39 class OriginBoundCertService; 38 class OriginBoundCertService;
40 class ProxyConfigService; 39 class ProxyConfigService;
41 class ProxyService; 40 class ProxyService;
42 class SdchManager; 41 class SdchManager;
(...skipping 24 matching lines...) Expand all
67 } media; 66 } media;
68 67
69 // The "system" NetworkDelegate, used for Profile-agnostic network events. 68 // The "system" NetworkDelegate, used for Profile-agnostic network events.
70 scoped_ptr<net::NetworkDelegate> system_network_delegate; 69 scoped_ptr<net::NetworkDelegate> system_network_delegate;
71 scoped_ptr<net::HostResolver> host_resolver; 70 scoped_ptr<net::HostResolver> host_resolver;
72 scoped_ptr<net::CertVerifier> cert_verifier; 71 scoped_ptr<net::CertVerifier> cert_verifier;
73 // This TransportSecurityState doesn't load or save any state. It's only 72 // This TransportSecurityState doesn't load or save any state. It's only
74 // used to enforce pinning for system requests and will only use built-in 73 // used to enforce pinning for system requests and will only use built-in
75 // pins. 74 // pins.
76 scoped_ptr<net::TransportSecurityState> transport_security_state; 75 scoped_ptr<net::TransportSecurityState> transport_security_state;
77 scoped_ptr<net::DnsRRResolver> dnsrr_resolver;
78 scoped_refptr<net::SSLConfigService> ssl_config_service; 76 scoped_refptr<net::SSLConfigService> ssl_config_service;
79 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory; 77 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory;
80 scoped_ptr<net::HttpServerProperties> http_server_properties; 78 scoped_ptr<net::HttpServerProperties> http_server_properties;
81 scoped_ptr<net::ProxyService> proxy_script_fetcher_proxy_service; 79 scoped_ptr<net::ProxyService> proxy_script_fetcher_proxy_service;
82 scoped_ptr<net::HttpTransactionFactory> 80 scoped_ptr<net::HttpTransactionFactory>
83 proxy_script_fetcher_http_transaction_factory; 81 proxy_script_fetcher_http_transaction_factory;
84 scoped_ptr<net::FtpTransactionFactory> 82 scoped_ptr<net::FtpTransactionFactory>
85 proxy_script_fetcher_ftp_transaction_factory; 83 proxy_script_fetcher_ftp_transaction_factory;
86 scoped_ptr<net::URLSecurityManager> url_security_manager; 84 scoped_ptr<net::URLSecurityManager> url_security_manager;
87 // We use a separate URLRequestContext for PAC fetches, in order to break 85 // We use a separate URLRequestContext for PAC fetches, in order to break
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 system_url_request_context_getter_; 201 system_url_request_context_getter_;
204 202
205 net::SdchManager* sdch_manager_; 203 net::SdchManager* sdch_manager_;
206 204
207 base::WeakPtrFactory<IOThread> weak_factory_; 205 base::WeakPtrFactory<IOThread> weak_factory_;
208 206
209 DISALLOW_COPY_AND_ASSIGN(IOThread); 207 DISALLOW_COPY_AND_ASSIGN(IOThread);
210 }; 208 };
211 209
212 #endif // CHROME_BROWSER_IO_THREAD_H_ 210 #endif // CHROME_BROWSER_IO_THREAD_H_
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | chrome/browser/io_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698