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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 scoped_ptr<net::ChannelIDService> channel_id_service_; | 83 scoped_ptr<net::ChannelIDService> channel_id_service_; |
84 scoped_ptr<net::CertVerifier> cert_verifier_; | 84 scoped_ptr<net::CertVerifier> cert_verifier_; |
85 scoped_refptr<net::SSLConfigService> ssl_config_service_; | 85 scoped_refptr<net::SSLConfigService> ssl_config_service_; |
86 scoped_ptr<net::TransportSecurityState> transport_security_state_; | 86 scoped_ptr<net::TransportSecurityState> transport_security_state_; |
87 scoped_ptr<net::ProxyConfigService> proxy_config_service_; | 87 scoped_ptr<net::ProxyConfigService> proxy_config_service_; |
88 scoped_ptr<net::ProxyService> proxy_service_; | 88 scoped_ptr<net::ProxyService> proxy_service_; |
89 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory_; | 89 scoped_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory_; |
90 scoped_ptr<net::HttpServerProperties> http_server_properties_; | 90 scoped_ptr<net::HttpServerProperties> http_server_properties_; |
91 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings_; | 91 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings_; |
92 scoped_ptr<net::HttpTransactionFactory> system_transaction_factory_; | 92 scoped_ptr<net::HttpTransactionFactory> system_transaction_factory_; |
| 93 scoped_ptr<net::URLRequestJobFactory> system_job_factory_; |
93 | 94 |
94 bool main_dependencies_initialized_; | 95 bool main_dependencies_initialized_; |
95 scoped_ptr<net::HttpTransactionFactory> main_transaction_factory_; | 96 scoped_ptr<net::HttpTransactionFactory> main_transaction_factory_; |
96 scoped_ptr<net::URLRequestJobFactory> main_job_factory_; | 97 scoped_ptr<net::URLRequestJobFactory> main_job_factory_; |
97 | 98 |
98 bool media_dependencies_initialized_; | 99 bool media_dependencies_initialized_; |
99 scoped_ptr<net::HttpTransactionFactory> media_transaction_factory_; | 100 scoped_ptr<net::HttpTransactionFactory> media_transaction_factory_; |
100 }; | 101 }; |
101 | 102 |
102 } // namespace shell | 103 } // namespace shell |
103 } // namespace chromecast | 104 } // namespace chromecast |
104 | 105 |
105 #endif // CHROMECAST_SHELL_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ | 106 #endif // CHROMECAST_SHELL_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ |
OLD | NEW |