| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ |
| 6 #define ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "content/public/browser/content_browser_client.h" | 12 #include "content/public/browser/content_browser_client.h" |
| 13 #include "net/http/http_network_session.h" | 13 #include "net/http/http_network_session.h" |
| 14 #include "net/ssl/server_bound_cert_service.h" |
| 14 #include "net/url_request/url_request_context_getter.h" | 15 #include "net/url_request/url_request_context_getter.h" |
| 15 #include "net/url_request/url_request_job_factory.h" | 16 #include "net/url_request/url_request_job_factory.h" |
| 16 | 17 |
| 17 namespace net { | 18 namespace net { |
| 18 class CookieStore; | 19 class CookieStore; |
| 19 class HttpTransactionFactory; | 20 class HttpTransactionFactory; |
| 20 class ProxyConfigService; | 21 class ProxyConfigService; |
| 21 class URLRequestContext; | 22 class URLRequestContext; |
| 22 class URLRequestJobFactory; | 23 class URLRequestJobFactory; |
| 23 } | 24 } |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 content::URLRequestInterceptorScopedVector request_interceptors); | 62 content::URLRequestInterceptorScopedVector request_interceptors); |
| 62 | 63 |
| 63 void InitializeURLRequestContext(); | 64 void InitializeURLRequestContext(); |
| 64 | 65 |
| 65 const base::FilePath partition_path_; | 66 const base::FilePath partition_path_; |
| 66 scoped_refptr<net::CookieStore> cookie_store_; | 67 scoped_refptr<net::CookieStore> cookie_store_; |
| 67 scoped_ptr<net::URLRequestContext> url_request_context_; | 68 scoped_ptr<net::URLRequestContext> url_request_context_; |
| 68 scoped_ptr<DataReductionProxyConfigService> proxy_config_service_; | 69 scoped_ptr<DataReductionProxyConfigService> proxy_config_service_; |
| 69 scoped_ptr<net::URLRequestJobFactory> job_factory_; | 70 scoped_ptr<net::URLRequestJobFactory> job_factory_; |
| 70 scoped_ptr<net::HttpTransactionFactory> main_http_factory_; | 71 scoped_ptr<net::HttpTransactionFactory> main_http_factory_; |
| 72 scoped_ptr<net::ServerBoundCertService> server_bound_cert_service_; |
| 71 | 73 |
| 72 // ProtocolHandlers and interceptors are stored here between | 74 // ProtocolHandlers and interceptors are stored here between |
| 73 // SetHandlersAndInterceptors() and the first GetURLRequestContext() call. | 75 // SetHandlersAndInterceptors() and the first GetURLRequestContext() call. |
| 74 content::ProtocolHandlerMap protocol_handlers_; | 76 content::ProtocolHandlerMap protocol_handlers_; |
| 75 content::URLRequestInterceptorScopedVector request_interceptors_; | 77 content::URLRequestInterceptorScopedVector request_interceptors_; |
| 76 | 78 |
| 77 DISALLOW_COPY_AND_ASSIGN(AwURLRequestContextGetter); | 79 DISALLOW_COPY_AND_ASSIGN(AwURLRequestContextGetter); |
| 78 }; | 80 }; |
| 79 | 81 |
| 80 } // namespace android_webview | 82 } // namespace android_webview |
| 81 | 83 |
| 82 #endif // ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ | 84 #endif // ANDROID_WEBVIEW_BROWSER_NET_AW_URL_REQUEST_CONTEXT_GETTER_H_ |
| OLD | NEW |