OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROMECAST_SHELL_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ | 5 #ifndef CHROMECAST_SHELL_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ |
6 #define CHROMECAST_SHELL_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ | 6 #define CHROMECAST_SHELL_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ |
7 | 7 |
8 #include "content/public/browser/content_browser_client.h" | 8 #include "content/public/browser/content_browser_client.h" |
9 #include "net/http/http_network_session.h" | 9 #include "net/http/http_network_session.h" |
10 | 10 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
72 scoped_refptr<net::URLRequestContextGetter> media_getter_; | 72 scoped_refptr<net::URLRequestContextGetter> media_getter_; |
73 scoped_refptr<net::URLRequestContextGetter> main_getter_; | 73 scoped_refptr<net::URLRequestContextGetter> main_getter_; |
74 | 74 |
75 // Shared objects for all contexts. | 75 // Shared objects for all contexts. |
76 // The URLRequestContextStorage class is not used as owner to these objects | 76 // The URLRequestContextStorage class is not used as owner to these objects |
77 // since they are shared between the different URLRequestContexts. | 77 // since they are shared between the different URLRequestContexts. |
78 // The URLRequestContextStorage class manages dependent resources for a single | 78 // The URLRequestContextStorage class manages dependent resources for a single |
79 // instance of URLRequestContext only. | 79 // instance of URLRequestContext only. |
80 bool system_dependencies_initialized_; | 80 bool system_dependencies_initialized_; |
81 scoped_ptr<net::HostResolver> host_resolver_; | 81 scoped_ptr<net::HostResolver> host_resolver_; |
82 scoped_ptr<net::ServerBoundCertService> server_bound_cert_service_; | 82 scoped_ptr<net::ChannelIDService> channel_id_service_; |
lcwu1
2014/08/06 18:25:08
There is already an upstream CL to fix this. (http
| |
83 scoped_ptr<net::CertVerifier> cert_verifier_; | 83 scoped_ptr<net::CertVerifier> cert_verifier_; |
84 scoped_refptr<net::SSLConfigService> ssl_config_service_; | 84 scoped_refptr<net::SSLConfigService> ssl_config_service_; |
85 scoped_ptr<net::TransportSecurityState> transport_security_state_; | 85 scoped_ptr<net::TransportSecurityState> transport_security_state_; |
86 scoped_ptr<net::ProxyService> proxy_service_; | 86 scoped_ptr<net::ProxyService> proxy_service_; |
87 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory_; | 87 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory_; |
88 scoped_ptr<net::HttpServerProperties> http_server_properties_; | 88 scoped_ptr<net::HttpServerProperties> http_server_properties_; |
89 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings_; | 89 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings_; |
90 scoped_ptr<net::HttpTransactionFactory> system_transaction_factory_; | 90 scoped_ptr<net::HttpTransactionFactory> system_transaction_factory_; |
91 | 91 |
92 bool main_dependencies_initialized_; | 92 bool main_dependencies_initialized_; |
93 scoped_ptr<net::HttpTransactionFactory> main_transaction_factory_; | 93 scoped_ptr<net::HttpTransactionFactory> main_transaction_factory_; |
94 scoped_ptr<net::URLRequestJobFactory> main_job_factory_; | 94 scoped_ptr<net::URLRequestJobFactory> main_job_factory_; |
95 | 95 |
96 bool media_dependencies_initialized_; | 96 bool media_dependencies_initialized_; |
97 scoped_ptr<net::HttpTransactionFactory> media_transaction_factory_; | 97 scoped_ptr<net::HttpTransactionFactory> media_transaction_factory_; |
98 }; | 98 }; |
99 | 99 |
100 } // namespace shell | 100 } // namespace shell |
101 } // namespace chromecast | 101 } // namespace chromecast |
102 | 102 |
103 #endif // CHROMECAST_SHELL_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ | 103 #endif // CHROMECAST_SHELL_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ |
OLD | NEW |