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

Unified Diff: content/browser/appcache/appcache_response.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
« no previous file with comments | « content/browser/appcache/appcache_request_handler.cc ('k') | content/browser/appcache/appcache_response.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/appcache/appcache_response.h
diff --git a/content/browser/appcache/appcache_response.h b/content/browser/appcache/appcache_response.h
index ffb64416d8b728e3ef14664537a119e72235641f..47f33522475238740ab41df08b4eda977df1fd7a 100644
--- a/content/browser/appcache/appcache_response.h
+++ b/content/browser/appcache/appcache_response.h
@@ -122,7 +122,6 @@ class CONTENT_EXPORT AppCacheResponseIO {
protected:
AppCacheResponseIO(
int64_t response_id,
- int64_t group_id,
const base::WeakPtr<AppCacheDiskCacheInterface>& disk_cache);
virtual void OnIOComplete(int result) = 0;
@@ -136,7 +135,6 @@ class CONTENT_EXPORT AppCacheResponseIO {
void OpenEntryIfNeeded();
const int64_t response_id_;
- const int64_t group_id_;
base::WeakPtr<AppCacheDiskCacheInterface> disk_cache_;
AppCacheDiskCacheInterface::Entry* entry_;
scoped_refptr<HttpResponseInfoIOBuffer> info_buffer_;
@@ -199,7 +197,6 @@ class CONTENT_EXPORT AppCacheResponseReader
// Should only be constructed by the storage class and derivatives.
AppCacheResponseReader(
int64_t response_id,
- int64_t group_id,
const base::WeakPtr<AppCacheDiskCacheInterface>& disk_cache);
void OnIOComplete(int result) override;
@@ -257,7 +254,6 @@ class CONTENT_EXPORT AppCacheResponseWriter
// Should only be constructed by the storage class and derivatives.
AppCacheResponseWriter(
int64_t response_id,
- int64_t group_id,
const base::WeakPtr<AppCacheDiskCacheInterface>& disk_cache);
private:
@@ -317,7 +313,6 @@ class CONTENT_EXPORT AppCacheResponseMetadataWriter
// Should only be constructed by the storage class and derivatives.
AppCacheResponseMetadataWriter(
int64_t response_id,
- int64_t group_id,
const base::WeakPtr<AppCacheDiskCacheInterface>& disk_cache);
private:
« no previous file with comments | « content/browser/appcache/appcache_request_handler.cc ('k') | content/browser/appcache/appcache_response.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698