OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_DISPATCHER_HOST_REQUEST_INFO_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RESOURCE_DISPATCHER_HOST_REQUEST_INFO_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RESOURCE_DISPATCHER_HOST_REQUEST_INFO_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RESOURCE_DISPATCHER_HOST_REQUEST_INFO_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/time.h" | 12 #include "base/time.h" |
13 #include "chrome/common/child_process_info.h" | 13 #include "content/common/child_process_info.h" |
14 #include "net/base/load_states.h" | 14 #include "net/base/load_states.h" |
15 #include "net/url_request/url_request.h" | 15 #include "net/url_request/url_request.h" |
16 #include "webkit/glue/resource_type.h" | 16 #include "webkit/glue/resource_type.h" |
17 | 17 |
18 class CrossSiteResourceHandler; | 18 class CrossSiteResourceHandler; |
19 class LoginHandler; | 19 class LoginHandler; |
20 class ResourceDispatcherHost; | 20 class ResourceDispatcherHost; |
21 class ResourceHandler; | 21 class ResourceHandler; |
22 class SSLClientAuthHandler; | 22 class SSLClientAuthHandler; |
23 | 23 |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 | 221 |
222 // Contains the id of the host renderer. | 222 // Contains the id of the host renderer. |
223 int host_renderer_id_; | 223 int host_renderer_id_; |
224 // Contains the id of the host render view. | 224 // Contains the id of the host render view. |
225 int host_render_view_id_; | 225 int host_render_view_id_; |
226 | 226 |
227 DISALLOW_COPY_AND_ASSIGN(ResourceDispatcherHostRequestInfo); | 227 DISALLOW_COPY_AND_ASSIGN(ResourceDispatcherHostRequestInfo); |
228 }; | 228 }; |
229 | 229 |
230 #endif // CONTENT_BROWSER_RENDERER_HOST_RESOURCE_DISPATCHER_HOST_REQUEST_INFO_H
_ | 230 #endif // CONTENT_BROWSER_RENDERER_HOST_RESOURCE_DISPATCHER_HOST_REQUEST_INFO_H
_ |
OLD | NEW |