summaryrefslogtreecommitdiffstats
path: root/net/http/http_cache_transaction.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/http_cache_transaction.h')
-rw-r--r--net/http/http_cache_transaction.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/http/http_cache_transaction.h b/net/http/http_cache_transaction.h
index 65ca970..e5365c4 100644
--- a/net/http/http_cache_transaction.h
+++ b/net/http/http_cache_transaction.h
@@ -313,6 +313,9 @@ class HttpCache::Transaction : public HttpTransaction {
// satisfiable).
void FailRangeRequest();
+ // Setups the transaction for reading from the cache entry.
+ int SetupEntryForRead();
+
// Reads data from the network.
int ReadFromNetwork(IOBuffer* data, int data_len);
@@ -413,6 +416,7 @@ class HttpCache::Transaction : public HttpTransaction {
bool cache_pending_; // We are waiting for the HttpCache.
bool done_reading_;
bool vary_mismatch_; // The request doesn't match the stored vary data.
+ bool couldnt_conditionalize_request_;
scoped_refptr<IOBuffer> read_buf_;
int io_buf_len_;
int read_offset_;