diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-26 01:40:29 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-26 01:40:29 +0000 |
commit | 9799db98a0fc105d13407c338bdf9f49cb4f26aa (patch) | |
tree | f0a023b42e5ed1d42e9beb34a03365984a7793b6 /net | |
parent | a76eff8da40e5b99bd4a21064e3a8773a94b888d (diff) | |
download | chromium_src-9799db98a0fc105d13407c338bdf9f49cb4f26aa.zip chromium_src-9799db98a0fc105d13407c338bdf9f49cb4f26aa.tar.gz chromium_src-9799db98a0fc105d13407c338bdf9f49cb4f26aa.tar.bz2 |
Adds a new type of cache (APP_CACHE) so that we can tell
appart an AppCache from a regular cache.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/661037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40091 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/base/cache_type.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/base/cache_type.h b/net/base/cache_type.h index 341ce7a..0823389 100644 --- a/net/base/cache_type.h +++ b/net/base/cache_type.h @@ -12,6 +12,7 @@ enum CacheType { DISK_CACHE, // Disk is used as the backing storage. MEMORY_CACHE, // Data is stored only in memory. MEDIA_CACHE, // Optimized to handle media files. + APP_CACHE // Backing store for an AppCache. }; } // namespace disk_cache |