summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_storage_unittest.cc
diff options
context:
space:
mode:
authormichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-24 01:18:13 +0000
committermichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-24 01:18:13 +0000
commit64144178c9070dd0e08abf0a70c5da87af0f1722 (patch)
treeab523e1e230670629abf8105a557e4f1d2da5599 /webkit/appcache/appcache_storage_unittest.cc
parent43c6dae7c9d9dc3cf639a4ada168d880b800e34b (diff)
downloadchromium_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_unittest.cc')
-rw-r--r--webkit/appcache/appcache_storage_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/appcache/appcache_storage_unittest.cc b/webkit/appcache/appcache_storage_unittest.cc
index 506dc04..c9c44d8 100644
--- a/webkit/appcache/appcache_storage_unittest.cc
+++ b/webkit/appcache/appcache_storage_unittest.cc
@@ -38,7 +38,7 @@ TEST_F(AppCacheStorageTest, AddRemoveCache) {
TEST_F(AppCacheStorageTest, AddRemoveGroup) {
MockAppCacheService service;
scoped_refptr<AppCacheGroup> group =
- new AppCacheGroup(&service, GURL::EmptyGURL());
+ new AppCacheGroup(&service, GURL::EmptyGURL(), 111);
EXPECT_EQ(group.get(),
service.storage()->working_set()->GetGroup(GURL::EmptyGURL()));