Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1107)

Unified Diff: content/browser/appcache/appcache_update_job_unittest.cc

Issue 1887153002: Removing unused field - AppCacheResponseIO::group_id_. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());
« no previous file with comments | « content/browser/appcache/appcache_update_job.cc ('k') | content/browser/appcache/appcache_url_request_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698