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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 | 39 |
40 protected: | 40 protected: |
41 virtual ~ShellURLRequestContextGetter(); | 41 virtual ~ShellURLRequestContextGetter(); |
42 | 42 |
43 private: | 43 private: |
44 FilePath base_path_; | 44 FilePath base_path_; |
45 MessageLoop* io_loop_; | 45 MessageLoop* io_loop_; |
46 MessageLoop* file_loop_; | 46 MessageLoop* file_loop_; |
47 | 47 |
48 scoped_ptr<net::ProxyConfigService> proxy_config_service_; | 48 scoped_ptr<net::ProxyConfigService> proxy_config_service_; |
49 | 49 scoped_ptr<net::NetworkDelegate> network_delegate_; |
50 scoped_refptr<net::URLRequestContext> url_request_context_; | |
51 scoped_ptr<net::URLRequestContextStorage> storage_; | 50 scoped_ptr<net::URLRequestContextStorage> storage_; |
52 scoped_ptr<net::NetworkDelegate> network_delegate_; | 51 scoped_ptr<net::URLRequestContext> url_request_context_; |
53 | 52 |
54 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); | 53 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); |
55 }; | 54 }; |
56 | 55 |
57 } // namespace content | 56 } // namespace content |
58 | 57 |
59 #endif // CONTENT_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 58 #endif // CONTENT_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
OLD | NEW |