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

Unified Diff: net/disk_cache/simple/simple_entry_format.h

Issue 1977863003: SimpleCache: open with fewer seeks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@open-speeder-macbetter
Patch Set: histogram suffixes Created 4 years, 7 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/simple/simple_entry_format.h
diff --git a/net/disk_cache/simple/simple_entry_format.h b/net/disk_cache/simple/simple_entry_format.h
index aec7162f2c2775da3da85e5ed65ad35e5064ff3f..369fe32d8445f4a7d6c64dc8d2fa93999d8d7cf7 100644
--- a/net/disk_cache/simple/simple_entry_format.h
+++ b/net/disk_cache/simple/simple_entry_format.h
@@ -47,6 +47,7 @@ struct NET_EXPORT_PRIVATE SimpleFileHeader {
struct NET_EXPORT_PRIVATE SimpleFileEOF {
enum Flags {
FLAG_HAS_CRC32 = (1U << 0),
+ FLAG_HAS_KEY_SHA256 = (2U << 1),
Randy Smith (Not in Mondays) 2016/05/19 19:38:49 Are you intentionally leaving a gap between the bi
gavinp 2016/05/20 01:42:31 Nope, that was a mistake. Thanks.
};
SimpleFileEOF();

Powered by Google App Engine
This is Rietveld 408576698