summaryrefslogtreecommitdiffstats
path: root/net/http/http_cache_transaction.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/http_cache_transaction.cc')
-rw-r--r--net/http/http_cache_transaction.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc
index e622b6f..528a6b7 100644
--- a/net/http/http_cache_transaction.cc
+++ b/net/http/http_cache_transaction.cc
@@ -356,6 +356,9 @@ int HttpCache::Transaction::Read(IOBuffer* buf, int buf_len,
return rv;
}
+void HttpCache::Transaction::StopCaching() {
+}
+
const HttpResponseInfo* HttpCache::Transaction::GetResponseInfo() const {
// Null headers means we encountered an error or haven't a response yet
if (auth_response_.headers)
@@ -378,6 +381,16 @@ uint64 HttpCache::Transaction::GetUploadProgress() const {
return final_upload_progress_;
}
+int HttpCache::Transaction::ReadMetadata(IOBuffer* buf, int buf_len,
+ CompletionCallback* callback) {
+ return ERR_NOT_IMPLEMENTED;
+}
+
+int HttpCache::Transaction::WriteMetadata(IOBuffer* buf, int buf_len,
+ CompletionCallback* callback) {
+ return ERR_NOT_IMPLEMENTED;
+}
+
int HttpCache::Transaction::AddToEntry() {
next_state_ = STATE_INIT_ENTRY;
cache_pending_ = false;