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 | |
8 | 7 |
9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
10 #include "base/file_path.h" | 9 #include "base/file_path.h" |
11 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
13 #include "net/url_request/url_request_context_getter.h" | 12 #include "net/url_request/url_request_context_getter.h" |
14 | 13 |
15 class MessageLoop; | 14 class MessageLoop; |
16 | 15 |
17 namespace net { | 16 namespace net { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 scoped_ptr<net::NetworkDelegate> network_delegate_; | 48 scoped_ptr<net::NetworkDelegate> network_delegate_; |
50 scoped_ptr<net::URLRequestContextStorage> storage_; | 49 scoped_ptr<net::URLRequestContextStorage> storage_; |
51 scoped_ptr<net::URLRequestContext> url_request_context_; | 50 scoped_ptr<net::URLRequestContext> url_request_context_; |
52 | 51 |
53 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); | 52 DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter); |
54 }; | 53 }; |
55 | 54 |
56 } // namespace content | 55 } // namespace content |
57 | 56 |
58 #endif // CONTENT_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ | 57 #endif // CONTENT_SHELL_SHELL_URL_REQUEST_CONTEXT_GETTER_H_ |
OLD | NEW |