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

Unified Diff: content/browser/appcache/appcache_url_request_job.h

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_url_request_job.h
diff --git a/content/browser/appcache/appcache_url_request_job.h b/content/browser/appcache/appcache_url_request_job.h
index 23d0f3bbb6bb3fcff777fbbb2c36afef9a0c2b24..e71e085ca541b6277a3a942be20c8afad3bdc5d3 100644
--- a/content/browser/appcache/appcache_url_request_job.h
+++ b/content/browser/appcache/appcache_url_request_job.h
@@ -52,7 +52,6 @@ class CONTENT_EXPORT AppCacheURLRequestJob
// methods should be called, and only once per job. A job will sit idle and
// wait indefinitely until one of the deliver methods is called.
void DeliverAppCachedResponse(const GURL& manifest_url,
- int64_t group_id,
int64_t cache_id,
const AppCacheEntry& entry,
bool is_fallback);
@@ -79,7 +78,6 @@ class CONTENT_EXPORT AppCacheURLRequestJob
// that this job has been instructed to deliver. These are only
// valid to call if is_delivering_appcache_response.
const GURL& manifest_url() const { return manifest_url_; }
- int64_t group_id() const { return group_id_; }
int64_t cache_id() const { return cache_id_; }
const AppCacheEntry& entry() const { return entry_; }
@@ -173,7 +171,6 @@ class CONTENT_EXPORT AppCacheURLRequestJob
bool has_been_killed_;
DeliveryType delivery_type_;
GURL manifest_url_;
- int64_t group_id_;
int64_t cache_id_;
AppCacheEntry entry_;
bool is_fallback_;
« no previous file with comments | « content/browser/appcache/appcache_update_job_unittest.cc ('k') | content/browser/appcache/appcache_url_request_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698