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_BROWSER_RENDERER_HOST_RESOURCE_LOADER_H_ | 5 #ifndef CONTENT_BROWSER_LOADER_RESOURCE_LOADER_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RESOURCE_LOADER_H_ | 6 #define CONTENT_BROWSER_LOADER_RESOURCE_LOADER_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "content/browser/renderer_host/resource_handler.h" | 10 #include "content/browser/loader/resource_handler.h" |
11 #include "content/browser/ssl/ssl_error_handler.h" | 11 #include "content/browser/ssl/ssl_error_handler.h" |
12 #include "content/public/browser/resource_controller.h" | 12 #include "content/public/browser/resource_controller.h" |
13 #include "net/url_request/url_request.h" | 13 #include "net/url_request/url_request.h" |
14 | 14 |
15 namespace content { | 15 namespace content { |
16 class ResourceDispatcherHostLoginDelegate; | 16 class ResourceDispatcherHostLoginDelegate; |
17 class ResourceLoaderDelegate; | 17 class ResourceLoaderDelegate; |
18 class ResourceRequestInfoImpl; | 18 class ResourceRequestInfoImpl; |
19 class SSLClientAuthHandler; | 19 class SSLClientAuthHandler; |
20 | 20 |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 // which point we'll receive a new ResourceHandler. | 114 // which point we'll receive a new ResourceHandler. |
115 bool is_transferring_; | 115 bool is_transferring_; |
116 | 116 |
117 base::WeakPtrFactory<ResourceLoader> weak_ptr_factory_; | 117 base::WeakPtrFactory<ResourceLoader> weak_ptr_factory_; |
118 | 118 |
119 DISALLOW_COPY_AND_ASSIGN(ResourceLoader); | 119 DISALLOW_COPY_AND_ASSIGN(ResourceLoader); |
120 }; | 120 }; |
121 | 121 |
122 } // namespace content | 122 } // namespace content |
123 | 123 |
124 #endif // CONTENT_BROWSER_RENDERER_HOST_RESOURCE_LOADER_H_ | 124 #endif // CONTENT_BROWSER_LOADER_RESOURCE_LOADER_H_ |
OLD | NEW |