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

Unified Diff: content/browser/service_worker/service_worker_disk_cache.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
« no previous file with comments | « content/browser/appcache/mock_appcache_storage.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/service_worker/service_worker_disk_cache.cc
diff --git a/content/browser/service_worker/service_worker_disk_cache.cc b/content/browser/service_worker/service_worker_disk_cache.cc
index f398e61bd2eb771738a9a626b78b06822c602591..a09444731e0456040207106f51f50aa23ef3b4a4 100644
--- a/content/browser/service_worker/service_worker_disk_cache.cc
+++ b/content/browser/service_worker/service_worker_disk_cache.cc
@@ -12,16 +12,16 @@ ServiceWorkerDiskCache::ServiceWorkerDiskCache()
ServiceWorkerResponseReader::ServiceWorkerResponseReader(
int64_t resource_id,
const base::WeakPtr<AppCacheDiskCacheInterface>& disk_cache)
- : AppCacheResponseReader(resource_id, 0, disk_cache) {}
+ : AppCacheResponseReader(resource_id, disk_cache) {}
ServiceWorkerResponseWriter::ServiceWorkerResponseWriter(
int64_t resource_id,
const base::WeakPtr<AppCacheDiskCacheInterface>& disk_cache)
- : AppCacheResponseWriter(resource_id, 0, disk_cache) {}
+ : AppCacheResponseWriter(resource_id, disk_cache) {}
ServiceWorkerResponseMetadataWriter::ServiceWorkerResponseMetadataWriter(
int64_t resource_id,
const base::WeakPtr<AppCacheDiskCacheInterface>& disk_cache)
- : AppCacheResponseMetadataWriter(resource_id, 0, disk_cache) {}
+ : AppCacheResponseMetadataWriter(resource_id, disk_cache) {}
} // namespace content
« no previous file with comments | « content/browser/appcache/mock_appcache_storage.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698