| Index: content/browser/appcache/appcache_update_job_unittest.cc
|
| diff --git a/content/browser/appcache/appcache_update_job_unittest.cc b/content/browser/appcache/appcache_update_job_unittest.cc
|
| index 18ba66fdedebbc0379d8a03135c68dca81e8586a..1040d2ecaa6292a4aaf16d7bd9fff5a8ff138bb6 100644
|
| --- a/content/browser/appcache/appcache_update_job_unittest.cc
|
| +++ b/content/browser/appcache/appcache_update_job_unittest.cc
|
| @@ -1009,8 +1009,7 @@ class AppCacheUpdateJobTest : public testing::Test,
|
|
|
| // Create response writer to get a response id.
|
| response_writer_.reset(
|
| - service_->storage()->CreateResponseWriter(group_->manifest_url(),
|
| - group_->group_id()));
|
| + service_->storage()->CreateResponseWriter(group_->manifest_url()));
|
|
|
| AppCache* cache = MakeCacheForGroup(1, response_writer_->response_id());
|
| MockFrontend* frontend1 = MakeMockFrontend();
|
| @@ -1161,8 +1160,7 @@ class AppCacheUpdateJobTest : public testing::Test,
|
|
|
| // Create a response writer to get a response id.
|
| response_writer_.reset(
|
| - service_->storage()->CreateResponseWriter(group_->manifest_url(),
|
| - group_->group_id()));
|
| + service_->storage()->CreateResponseWriter(group_->manifest_url()));
|
|
|
| AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(),
|
| response_writer_->response_id());
|
| @@ -1230,8 +1228,7 @@ class AppCacheUpdateJobTest : public testing::Test,
|
|
|
| // Give the newest cache an entry that is in storage.
|
| response_writer_.reset(
|
| - service_->storage()->CreateResponseWriter(group_->manifest_url(),
|
| - group_->group_id()));
|
| + service_->storage()->CreateResponseWriter(group_->manifest_url()));
|
| cache->AddEntry(MockHttpServer::GetMockUrl("files/explicit1"),
|
| AppCacheEntry(AppCacheEntry::EXPLICIT,
|
| response_writer_->response_id()));
|
| @@ -1292,8 +1289,7 @@ class AppCacheUpdateJobTest : public testing::Test,
|
|
|
| // Give the newest cache an entry that is in storage.
|
| response_writer_.reset(
|
| - service_->storage()->CreateResponseWriter(group_->manifest_url(),
|
| - group_->group_id()));
|
| + service_->storage()->CreateResponseWriter(group_->manifest_url()));
|
| cache->AddEntry(MockHttpServer::GetMockUrl("files/explicit1"),
|
| AppCacheEntry(AppCacheEntry::EXPLICIT,
|
| response_writer_->response_id()));
|
| @@ -1352,8 +1348,7 @@ class AppCacheUpdateJobTest : public testing::Test,
|
|
|
| // Give the newest cache an entry that is in storage.
|
| response_writer_.reset(
|
| - service_->storage()->CreateResponseWriter(group_->manifest_url(),
|
| - group_->group_id()));
|
| + service_->storage()->CreateResponseWriter(group_->manifest_url()));
|
| cache->AddEntry(MockHttpServer::GetMockUrl("files/explicit1"),
|
| AppCacheEntry(AppCacheEntry::EXPLICIT,
|
| response_writer_->response_id()));
|
| @@ -2782,8 +2777,7 @@ class AppCacheUpdateJobTest : public testing::Test,
|
|
|
| // Give the newest cache a manifest enry that is in storage.
|
| response_writer_.reset(
|
| - service_->storage()->CreateResponseWriter(group_->manifest_url(),
|
| - group_->group_id()));
|
| + service_->storage()->CreateResponseWriter(group_->manifest_url()));
|
|
|
| AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(),
|
| response_writer_->response_id());
|
| @@ -2846,8 +2840,7 @@ class AppCacheUpdateJobTest : public testing::Test,
|
|
|
| // Give the newest cache a manifest enry that is in storage.
|
| response_writer_.reset(
|
| - service_->storage()->CreateResponseWriter(group_->manifest_url(),
|
| - group_->group_id()));
|
| + service_->storage()->CreateResponseWriter(group_->manifest_url()));
|
|
|
| AppCache* cache = MakeCacheForGroup(service_->storage()->NewCacheId(),
|
| response_writer_->response_id());
|
|
|