| Index: net/http/http_response_info.h
|
| diff --git a/net/http/http_response_info.h b/net/http/http_response_info.h
|
| index 671a390fda2ce393a913ba02bd980d2af5ba7c83..caa49df8dcbcaff01424baa33d0dbd216f6b22fc 100644
|
| --- a/net/http/http_response_info.h
|
| +++ b/net/http/http_response_info.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef NET_HTTP_HTTP_RESPONSE_INFO_H_
|
| #define NET_HTTP_HTTP_RESPONSE_INFO_H_
|
|
|
| +#include "base/platform_file.h"
|
| #include "base/time.h"
|
| #include "net/base/auth.h"
|
| #include "net/base/ssl_info.h"
|
| @@ -48,6 +49,10 @@ class HttpResponseInfo {
|
|
|
| // The "Vary" header data for this response.
|
| HttpVaryData vary_data;
|
| +
|
| + // Platform specific file handle to the response data, if response data is
|
| + // not in a standalone file, its value is base::kInvalidPlatformFileValue.
|
| + base::PlatformFile response_data_file;
|
| };
|
|
|
| } // namespace net
|
|
|