| 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 CONTENT_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 5 #ifndef CONTENT_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
| 6 #define CONTENT_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 6 #define CONTENT_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 private: | 44 private: |
| 45 bool ignore_certificate_errors_; | 45 bool ignore_certificate_errors_; |
| 46 FilePath base_path_; | 46 FilePath base_path_; |
| 47 MessageLoop* io_loop_; | 47 MessageLoop* io_loop_; |
| 48 MessageLoop* file_loop_; | 48 MessageLoop* file_loop_; |
| 49 | 49 |
| 50 scoped_ptr<net::ProxyConfigService> proxy_config_service_; | 50 scoped_ptr<net::ProxyConfigService> proxy_config_service_; |
| 51 scoped_ptr<net::NetworkDelegate> network_delegate_; | 51 scoped_ptr<net::NetworkDelegate> network_delegate_; |
| 52 scoped_ptr<net::URLRequestContextStorage> storage_; | 52 scoped_ptr<net::URLRequestContextStorage> storage_; |
| 53 scoped_ptr<net::URLRequestContext> url_request_context_; | 53 scoped_ptr<net::URLRequestContext> url_request_context_; |
| 54 scoped_ptr<net::MappedHostResolver> mapped_host_resolver_; | |
| 55 | 54 |
| 56 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); | 55 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); |
| 57 }; | 56 }; |
| 58 | 57 |
| 59 } // namespace content | 58 } // namespace content |
| 60 | 59 |
| 61 #endif // CONTENT_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 60 #endif // CONTENT_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
| OLD | NEW |