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 |
11 namespace net { | 11 namespace net { |
12 class HttpTransactionFactory; | 12 class HttpTransactionFactory; |
13 class HttpUserAgentSettings; | 13 class HttpUserAgentSettings; |
14 class ProxyConfigService; | 14 class ProxyConfigService; |
15 class URLRequestJobFactory; | 15 class URLRequestJobFactory; |
16 } // namespace net | 16 } // namespace net |
17 | 17 |
18 namespace chromecast { | 18 namespace chromecast { |
19 namespace shell { | 19 namespace shell { |
| 20 class CastNetworkDelegate; |
20 | 21 |
21 class URLRequestContextFactory { | 22 class URLRequestContextFactory { |
22 public: | 23 public: |
23 URLRequestContextFactory(); | 24 URLRequestContextFactory(); |
24 ~URLRequestContextFactory(); | 25 ~URLRequestContextFactory(); |
25 | 26 |
26 // Some members must be initialized on UI thread. | 27 // Some members must be initialized on UI thread. |
27 void InitializeOnUIThread(); | 28 void InitializeOnUIThread(); |
28 | 29 |
29 // Since main context requires a bunch of input params, if these get called | 30 // Since main context requires a bunch of input params, if these get called |
30 // multiple times, either multiple main contexts should be supported/managed | 31 // multiple times, either multiple main contexts should be supported/managed |
31 // or the input params need to be the same as before. So to be safe, | 32 // or the input params need to be the same as before. So to be safe, |
32 // the CreateMainGetter function currently DCHECK to make sure it is not | 33 // the CreateMainGetter function currently DCHECK to make sure it is not |
33 // called more than once. | 34 // called more than once. |
34 // The media and system getters however, do not need input, so it is actually | 35 // The media and system getters however, do not need input, so it is actually |
35 // safe to call these multiple times. The impl create only 1 getter of each | 36 // safe to call these multiple times. The impl create only 1 getter of each |
36 // type and return the same instance each time the methods are called, thus | 37 // type and return the same instance each time the methods are called, thus |
37 // the name difference. | 38 // the name difference. |
38 net::URLRequestContextGetter* GetSystemGetter(); | 39 net::URLRequestContextGetter* GetSystemGetter(); |
39 net::URLRequestContextGetter* CreateMainGetter( | 40 net::URLRequestContextGetter* CreateMainGetter( |
40 content::BrowserContext* browser_context, | 41 content::BrowserContext* browser_context, |
41 content::ProtocolHandlerMap* protocol_handlers, | 42 content::ProtocolHandlerMap* protocol_handlers, |
42 content::URLRequestInterceptorScopedVector request_interceptors); | 43 content::URLRequestInterceptorScopedVector request_interceptors); |
43 net::URLRequestContextGetter* GetMainGetter(); | 44 net::URLRequestContextGetter* GetMainGetter(); |
44 net::URLRequestContextGetter* GetMediaGetter(); | 45 net::URLRequestContextGetter* GetMediaGetter(); |
45 | 46 |
| 47 CastNetworkDelegate* app_network_delegate() const { |
| 48 return app_network_delegate_.get(); |
| 49 } |
| 50 |
| 51 // Initialize the CastNetworkDelegate objects. This needs to be done |
| 52 // after the CastService is created, but before any URL requests are made. |
| 53 void InitializeNetworkDelegates(); |
| 54 |
46 private: | 55 private: |
47 class URLRequestContextGetter; | 56 class URLRequestContextGetter; |
48 class MainURLRequestContextGetter; | 57 class MainURLRequestContextGetter; |
49 friend class URLRequestContextGetter; | 58 friend class URLRequestContextGetter; |
50 friend class MainURLRequestContextGetter; | 59 friend class MainURLRequestContextGetter; |
51 | 60 |
52 void InitializeSystemContextDependencies(); | 61 void InitializeSystemContextDependencies(); |
53 void InitializeMainContextDependencies( | 62 void InitializeMainContextDependencies( |
54 net::HttpTransactionFactory* factory, | 63 net::HttpTransactionFactory* factory, |
55 content::ProtocolHandlerMap* protocol_handlers, | 64 content::ProtocolHandlerMap* protocol_handlers, |
56 content::URLRequestInterceptorScopedVector request_interceptors); | 65 content::URLRequestInterceptorScopedVector request_interceptors); |
57 void InitializeMediaContextDependencies(net::HttpTransactionFactory* factory); | 66 void InitializeMediaContextDependencies(net::HttpTransactionFactory* factory); |
58 | 67 |
59 void PopulateNetworkSessionParams(bool ignore_certificate_errors, | 68 void PopulateNetworkSessionParams(bool ignore_certificate_errors, |
60 net::HttpNetworkSession::Params* params); | 69 net::HttpNetworkSession::Params* params); |
61 | 70 |
62 // These are called by the RequestContextGetters to create each | 71 // These are called by the RequestContextGetters to create each |
63 // RequestContext. | 72 // RequestContext. |
64 // They must be called on the IO thread. | 73 // They must be called on the IO thread. |
65 net::URLRequestContext* CreateSystemRequestContext(); | 74 net::URLRequestContext* CreateSystemRequestContext(); |
66 net::URLRequestContext* CreateMediaRequestContext(); | 75 net::URLRequestContext* CreateMediaRequestContext(); |
67 net::URLRequestContext* CreateMainRequestContext( | 76 net::URLRequestContext* CreateMainRequestContext( |
68 content::BrowserContext* browser_context, | 77 content::BrowserContext* browser_context, |
69 content::ProtocolHandlerMap* protocol_handlers, | 78 content::ProtocolHandlerMap* protocol_handlers, |
70 content::URLRequestInterceptorScopedVector request_interceptors); | 79 content::URLRequestInterceptorScopedVector request_interceptors); |
71 | 80 |
72 scoped_refptr<net::URLRequestContextGetter> system_getter_; | 81 scoped_refptr<net::URLRequestContextGetter> system_getter_; |
73 scoped_refptr<net::URLRequestContextGetter> media_getter_; | 82 scoped_refptr<net::URLRequestContextGetter> media_getter_; |
74 scoped_refptr<net::URLRequestContextGetter> main_getter_; | 83 scoped_refptr<net::URLRequestContextGetter> main_getter_; |
| 84 scoped_ptr<CastNetworkDelegate> app_network_delegate_; |
| 85 scoped_ptr<CastNetworkDelegate> system_network_delegate_; |
75 | 86 |
76 // Shared objects for all contexts. | 87 // Shared objects for all contexts. |
77 // The URLRequestContextStorage class is not used as owner to these objects | 88 // The URLRequestContextStorage class is not used as owner to these objects |
78 // since they are shared between the different URLRequestContexts. | 89 // since they are shared between the different URLRequestContexts. |
79 // The URLRequestContextStorage class manages dependent resources for a single | 90 // The URLRequestContextStorage class manages dependent resources for a single |
80 // instance of URLRequestContext only. | 91 // instance of URLRequestContext only. |
81 bool system_dependencies_initialized_; | 92 bool system_dependencies_initialized_; |
82 scoped_ptr<net::HostResolver> host_resolver_; | 93 scoped_ptr<net::HostResolver> host_resolver_; |
83 scoped_ptr<net::ChannelIDService> channel_id_service_; | 94 scoped_ptr<net::ChannelIDService> channel_id_service_; |
84 scoped_ptr<net::CertVerifier> cert_verifier_; | 95 scoped_ptr<net::CertVerifier> cert_verifier_; |
(...skipping 12 matching lines...) Expand all Loading... |
97 scoped_ptr<net::URLRequestJobFactory> main_job_factory_; | 108 scoped_ptr<net::URLRequestJobFactory> main_job_factory_; |
98 | 109 |
99 bool media_dependencies_initialized_; | 110 bool media_dependencies_initialized_; |
100 scoped_ptr<net::HttpTransactionFactory> media_transaction_factory_; | 111 scoped_ptr<net::HttpTransactionFactory> media_transaction_factory_; |
101 }; | 112 }; |
102 | 113 |
103 } // namespace shell | 114 } // namespace shell |
104 } // namespace chromecast | 115 } // namespace chromecast |
105 | 116 |
106 #endif // CHROMECAST_SHELL_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ | 117 #endif // CHROMECAST_SHELL_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ |
OLD | NEW |