summaryrefslogtreecommitdiffstats
path: root/net/http/http_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/http_cache.h')
-rw-r--r--net/http/http_cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http/http_cache.h b/net/http/http_cache.h
index 472c272..bb2bf48 100644
--- a/net/http/http_cache.h
+++ b/net/http/http_cache.h
@@ -131,14 +131,14 @@ class HttpCache : public HttpTransactionFactory,
// Helper function for reading response info from the disk cache. If the
// cache doesn't have the whole resource *|request_truncated| is set to true.
- // Avoid this function for performance critical paths as it uses blocking IO.
+ // NOTE: This method is deprecated.
static bool ReadResponseInfo(disk_cache::Entry* disk_entry,
HttpResponseInfo* response_info,
bool* response_truncated);
// Helper function for writing response info into the disk cache. If the
// cache doesn't have the whole resource |request_truncated| should be true.
- // Avoid this function for performance critical paths as it uses blocking IO.
+ // NOTE: This method is deprecated.
static bool WriteResponseInfo(disk_cache::Entry* disk_entry,
const HttpResponseInfo* response_info,
bool skip_transient_headers,