diff options
Diffstat (limited to 'webkit/appcache/appcache_storage.h')
-rw-r--r-- | webkit/appcache/appcache_storage.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/webkit/appcache/appcache_storage.h b/webkit/appcache/appcache_storage.h index 7c31ca5..aa09eb6 100644 --- a/webkit/appcache/appcache_storage.h +++ b/webkit/appcache/appcache_storage.h @@ -140,16 +140,10 @@ class AppCacheStorage { virtual AppCacheResponseWriter* CreateResponseWriter( const GURL& manifest_url) = 0; - // Schedules the imminent deletion of many responses. + // Schedules the deletion of many responses. virtual void DoomResponses( const GURL& manifest_url, const std::vector<int64>& response_ids) = 0; - // Schedules the imminent deletion of a single response. - void DoomResponse(const GURL& manifest_url, int64 response_id) { - std::vector<int64> response_ids(1, response_id); - DoomResponses(manifest_url, response_ids); - } - // Generates unique storage ids for different object types. int64 NewCacheId() { return ++last_cache_id_; |