diff options
author | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-03 01:26:10 +0000 |
---|---|---|
committer | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-03 01:26:10 +0000 |
commit | 4f32303e4491c3b2358825e0b26f8c5db3b28b33 (patch) | |
tree | eeb15549ae8540ddc6e1be0a5400247d5f771844 /webkit/appcache/appcache.h | |
parent | e07dfdab975039ea0719e8dc7e7f5faaf0887a91 (diff) | |
download | chromium_src-4f32303e4491c3b2358825e0b26f8c5db3b28b33.zip chromium_src-4f32303e4491c3b2358825e0b26f8c5db3b28b33.tar.gz chromium_src-4f32303e4491c3b2358825e0b26f8c5db3b28b33.tar.bz2 |
Undo in memory changes made by an update job if the commit to disk fails. Provide a more clear error message when the commit fails due to exceeding the quota.
TEST=MasterEntryFailStoreNewestCacheTest
BUG=50985
Review URL: http://codereview.chromium.org/2836075
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54667 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache.h')
-rw-r--r-- | webkit/appcache/appcache.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/appcache/appcache.h b/webkit/appcache/appcache.h index a61269f..c54eb38 100644 --- a/webkit/appcache/appcache.h +++ b/webkit/appcache/appcache.h @@ -51,6 +51,9 @@ class AppCache : public base::RefCounted<AppCache> { // is added, false if the flags are merged into an existing entry. bool AddOrModifyEntry(const GURL& url, const AppCacheEntry& entry); + // Removes an entry from the EntryMap, the URL must be in the set. + void RemoveEntry(const GURL& url); + // Do not store the returned object as it could be deleted anytime. AppCacheEntry* GetEntry(const GURL& url); |