| 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_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ | 5 #ifndef CHROMECAST_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ |
| 6 #define CHROMECAST_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ | 6 #define CHROMECAST_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ |
| 7 | 7 |
| 8 #include "content/public/browser/browser_context.h" |
| 8 #include "content/public/browser/content_browser_client.h" | 9 #include "content/public/browser/content_browser_client.h" |
| 9 #include "net/http/http_network_session.h" | 10 #include "net/http/http_network_session.h" |
| 10 | 11 |
| 11 namespace net { | 12 namespace net { |
| 12 class CookieStore; | 13 class CookieStore; |
| 13 class HttpTransactionFactory; | 14 class HttpTransactionFactory; |
| 14 class HttpUserAgentSettings; | 15 class HttpUserAgentSettings; |
| 15 class NetLog; | 16 class NetLog; |
| 16 class ProxyConfigService; | 17 class ProxyConfigService; |
| 17 class URLRequestJobFactory; | 18 class URLRequestJobFactory; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 bool media_dependencies_initialized_; | 119 bool media_dependencies_initialized_; |
| 119 scoped_ptr<net::HttpTransactionFactory> media_transaction_factory_; | 120 scoped_ptr<net::HttpTransactionFactory> media_transaction_factory_; |
| 120 | 121 |
| 121 net::NetLog* net_log_; | 122 net::NetLog* net_log_; |
| 122 }; | 123 }; |
| 123 | 124 |
| 124 } // namespace shell | 125 } // namespace shell |
| 125 } // namespace chromecast | 126 } // namespace chromecast |
| 126 | 127 |
| 127 #endif // CHROMECAST_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ | 128 #endif // CHROMECAST_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ |
| OLD | NEW |