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

Unified Diff: net/disk_cache/disk_cache.cc

Issue 2958033002: Interface for associating in-memory hint bytes with disk cache entries. (Closed)
Patch Set: Reword comment based on Gavin's feedback; 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
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..d3f9df7aa37651ef4ef094bcf07f762713d3099e 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::GetMemoryEntryData(const std::string& key) {
+ return 0;
+}
+
+void Backend::SetMemoryEntryData(const std::string& key, uint8_t data) {}
+
} // namespace disk_cache

Powered by Google App Engine
This is Rietveld 408576698