Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(683)

Unified Diff: net/disk_cache/disk_cache.cc

Issue 2958033002: Interface for associating in-memory hint bytes with disk cache entries. (Closed)
Patch Set: Rebase Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/disk_cache/disk_cache.h ('k') | net/http/mock_http_cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/disk_cache.cc
diff --git a/net/disk_cache/disk_cache.cc b/net/disk_cache/disk_cache.cc
index e860aef78811f41d08443802fd532c550a8c2129..345a649e8b5875665d3c73cb952763bd13d12053 100644
--- a/net/disk_cache/disk_cache.cc
+++ b/net/disk_cache/disk_cache.cc
@@ -292,4 +292,10 @@ int Backend::CalculateSizeOfEntriesBetween(base::Time initial_time,
return net::ERR_NOT_IMPLEMENTED;
}
+uint8_t Backend::GetEntryInMemoryData(const std::string& key) {
+ return 0;
+}
+
+void Backend::SetEntryInMemoryData(const std::string& key, uint8_t data) {}
+
} // namespace disk_cache
« no previous file with comments | « net/disk_cache/disk_cache.h ('k') | net/http/mock_http_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698