diff options
author | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-24 01:18:13 +0000 |
---|---|---|
committer | michaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-24 01:18:13 +0000 |
commit | 64144178c9070dd0e08abf0a70c5da87af0f1722 (patch) | |
tree | ab523e1e230670629abf8105a557e4f1d2da5599 /webkit/appcache/appcache_storage.cc | |
parent | 43c6dae7c9d9dc3cf639a4ada168d880b800e34b (diff) | |
download | chromium_src-64144178c9070dd0e08abf0a70c5da87af0f1722.zip chromium_src-64144178c9070dd0e08abf0a70c5da87af0f1722.tar.gz chromium_src-64144178c9070dd0e08abf0a70c5da87af0f1722.tar.bz2 |
A mind numbing change to add the notion of a persistent groupId, and to get rid of the notion of an entryId.
TEST=existing tests apply
BUG=none
Review URL: http://codereview.chromium.org/432012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32895 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/appcache/appcache_storage.cc')
-rw-r--r-- | webkit/appcache/appcache_storage.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/webkit/appcache/appcache_storage.cc b/webkit/appcache/appcache_storage.cc index b1fc5c4..e0e2610 100644 --- a/webkit/appcache/appcache_storage.cc +++ b/webkit/appcache/appcache_storage.cc @@ -10,8 +10,7 @@ namespace appcache { AppCacheStorage::AppCacheStorage(AppCacheService* service) : last_cache_id_(kUnitializedId), last_group_id_(kUnitializedId), - last_entry_id_(kUnitializedId), last_response_id_(kUnitializedId), - service_(service) { + last_response_id_(kUnitializedId), service_(service) { } AppCacheStorage::~AppCacheStorage() { |