diff options
Diffstat (limited to 'net/http/http_response_info.h')
-rw-r--r-- | net/http/http_response_info.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/http/http_response_info.h b/net/http/http_response_info.h index a3e0123f..201595c 100644 --- a/net/http/http_response_info.h +++ b/net/http/http_response_info.h @@ -7,6 +7,7 @@ #include "base/time.h" #include "net/base/auth.h" +#include "net/base/io_buffer.h" #include "net/base/ssl_cert_request_info.h" #include "net/base/ssl_info.h" #include "net/http/http_response_headers.h" @@ -61,6 +62,9 @@ class HttpResponseInfo { // The "Vary" header data for this response. HttpVaryData vary_data; + // Any metadata asociated with this resource's cached data. + scoped_refptr<IOBufferWithSize> metadata; + // Initializes from the representation stored in the given pickle. bool InitFromPickle(const Pickle& pickle, bool* response_truncated); |