| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
| 14 #include "content/public/common/page_transition_types.h" | 14 #include "content/public/common/page_transition_types.h" |
| 15 #include "content/public/common/process_type.h" | 15 #include "content/public/common/process_type.h" |
| 16 #include "content/public/common/referrer.h" |
| 16 #include "net/base/load_states.h" | 17 #include "net/base/load_states.h" |
| 17 #include "net/url_request/url_request.h" | 18 #include "net/url_request/url_request.h" |
| 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebReferrerPolicy.h" | |
| 19 #include "webkit/glue/resource_type.h" | 19 #include "webkit/glue/resource_type.h" |
| 20 | 20 |
| 21 class CrossSiteResourceHandler; | 21 class CrossSiteResourceHandler; |
| 22 class ResourceDispatcherHost; | 22 class ResourceDispatcherHost; |
| 23 class ResourceDispatcherHostLoginDelegate; | 23 class ResourceDispatcherHostLoginDelegate; |
| 24 class ResourceHandler; | 24 class ResourceHandler; |
| 25 class SSLClientAuthHandler; | 25 class SSLClientAuthHandler; |
| 26 | 26 |
| 27 namespace content { | 27 namespace content { |
| 28 class ResourceContext; | 28 class ResourceContext; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 // accessors above for consistency). | 254 // accessors above for consistency). |
| 255 bool is_paused_; | 255 bool is_paused_; |
| 256 bool called_on_response_started_; | 256 bool called_on_response_started_; |
| 257 bool has_started_reading_; | 257 bool has_started_reading_; |
| 258 int paused_read_bytes_; | 258 int paused_read_bytes_; |
| 259 | 259 |
| 260 DISALLOW_COPY_AND_ASSIGN(ResourceDispatcherHostRequestInfo); | 260 DISALLOW_COPY_AND_ASSIGN(ResourceDispatcherHostRequestInfo); |
| 261 }; | 261 }; |
| 262 | 262 |
| 263 #endif // CONTENT_BROWSER_RENDERER_HOST_RESOURCE_DISPATCHER_HOST_REQUEST_INFO_H
_ | 263 #endif // CONTENT_BROWSER_RENDERER_HOST_RESOURCE_DISPATCHER_HOST_REQUEST_INFO_H
_ |
| OLD | NEW |