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_RENDERER_HOST_RESOURCE_LOADER_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RESOURCE_LOADER_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RESOURCE_LOADER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
10 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
11 #include "content/browser/renderer_host/resource_handler.h" | 10 #include "content/browser/renderer_host/resource_handler.h" |
12 #include "content/browser/ssl/ssl_error_handler.h" | 11 #include "content/browser/ssl/ssl_error_handler.h" |
13 #include "content/public/browser/resource_controller.h" | 12 #include "content/public/browser/resource_controller.h" |
14 #include "net/url_request/url_request.h" | 13 #include "net/url_request/url_request.h" |
15 | 14 |
16 class SSLClientAuthHandler; | 15 class SSLClientAuthHandler; |
17 | 16 |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 // consumer. We are waiting for a notification to complete the transfer, at | 112 // consumer. We are waiting for a notification to complete the transfer, at |
114 // which point we'll receive a new ResourceHandler. | 113 // which point we'll receive a new ResourceHandler. |
115 bool is_transferring_; | 114 bool is_transferring_; |
116 | 115 |
117 DISALLOW_COPY_AND_ASSIGN(ResourceLoader); | 116 DISALLOW_COPY_AND_ASSIGN(ResourceLoader); |
118 }; | 117 }; |
119 | 118 |
120 } // namespace content | 119 } // namespace content |
121 | 120 |
122 #endif // CONTENT_BROWSER_RENDERER_HOST_RESOURCE_LOADER_H_ | 121 #endif // CONTENT_BROWSER_RENDERER_HOST_RESOURCE_LOADER_H_ |
OLD | NEW |