diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-18 18:54:52 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-18 18:54:52 +0000 |
commit | 1849d01a855914348bbdc07c7674764daf549358 (patch) | |
tree | 432d2a804daa8424703d394dc3a89e662b1e3aa4 /net/disk_cache/disk_cache.h | |
parent | d6a612019430c62642db846393dbab1e9d4c7869 (diff) | |
download | chromium_src-1849d01a855914348bbdc07c7674764daf549358.zip chromium_src-1849d01a855914348bbdc07c7674764daf549358.tar.gz chromium_src-1849d01a855914348bbdc07c7674764daf549358.tar.bz2 |
Disk cache: First implementation of TrimDeleted() and a few
other fixes related to the new eviction code. As before,
almost everything is disabled by default.
Review URL: http://codereview.chromium.org/48112
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11995 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/disk_cache/disk_cache.h')
-rw-r--r-- | net/disk_cache/disk_cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/disk_cache/disk_cache.h b/net/disk_cache/disk_cache.h index 3ea3b25..50f50c5 100644 --- a/net/disk_cache/disk_cache.h +++ b/net/disk_cache/disk_cache.h @@ -172,7 +172,7 @@ class Entry { // Returns an asynchronous read file handle for the cache stream referenced by // |index|. Values other than base::kInvalidPlatformFileValue are successful - // and the file handle should be managed by the caller, i.e. caller should + // and the file handle should be managed by the caller, i.e. the caller should // close the handle after use or there will be a leak. virtual base::PlatformFile GetPlatformFile(int index) = 0; |