diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-02 18:17:18 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-02 18:17:18 +0000 |
commit | ffd77f7a08e63b7bc531f6c463c39a794a21b6d1 (patch) | |
tree | 02efef3f71d5cca8cd0837dab1738585b2ed128c /net/disk_cache/disk_format.h | |
parent | a23f3031457f6518580a976204c099bb43069dd2 (diff) | |
download | chromium_src-ffd77f7a08e63b7bc531f6c463c39a794a21b6d1.zip chromium_src-ffd77f7a08e63b7bc531f6c463c39a794a21b6d1.tar.gz chromium_src-ffd77f7a08e63b7bc531f6c463c39a794a21b6d1.tar.bz2 |
If a disk cache entry is stored as an external file, and it is reused (open/truncate/write/close), the current cache size should be modified accordingly. I'm also bumping up the version number for the cache files, to force re-creation with this revision.
BUG=1305909
TEST=Unit test.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/disk_format.h')
-rw-r--r-- | net/disk_cache/disk_format.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/disk_cache/disk_format.h b/net/disk_cache/disk_format.h index 4546c88..e23caa9 100644 --- a/net/disk_cache/disk_format.h +++ b/net/disk_cache/disk_format.h @@ -88,7 +88,7 @@ typedef uint32 CacheAddr; const int kIndexTablesize = 0x10000; const uint32 kIndexMagic = 0xC103CAC3; -const uint32 kCurrentVersion = 0x10002; // Version 1.2. +const uint32 kCurrentVersion = 0x10003; // Version 1.3. // Header for the master index file. struct IndexHeader { |