| 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..e13f36f8f277a790a040d2f65e03f949345b228d 100644
|
| --- a/net/disk_cache/simple/simple_entry_format.h
|
| +++ b/net/disk_cache/simple/simple_entry_format.h
|
| @@ -19,6 +19,8 @@ const uint64_t kSimpleInitialMagicNumber = UINT64_C(0xfcfb6d1ba7725c30);
|
| const uint64_t kSimpleFinalMagicNumber = UINT64_C(0xf4fa6f45970d41d8);
|
| const uint64_t kSimpleSparseRangeMagicNumber = UINT64_C(0xeb97bf016553676b);
|
|
|
| +// The magic number for SimpleEntryVersion 5
|
| +
|
| // A file containing stream 0 and stream 1 in the Simple cache consists of:
|
| // - a SimpleFileHeader.
|
| // - the key.
|
| @@ -47,6 +49,7 @@ struct NET_EXPORT_PRIVATE SimpleFileHeader {
|
| struct NET_EXPORT_PRIVATE SimpleFileEOF {
|
| enum Flags {
|
| FLAG_HAS_CRC32 = (1U << 0),
|
| + FLAG_HAS_KEY_SHA256 = (2U << 1),
|
| };
|
|
|
| SimpleFileEOF();
|
|
|