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

Unified Diff: content/browser/appcache/appcache_internals_ui.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 | « no previous file | content/browser/appcache/appcache_request_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/appcache/appcache_internals_ui.cc
diff --git a/content/browser/appcache/appcache_internals_ui.cc b/content/browser/appcache/appcache_internals_ui.cc
index 1a36ddbcb6a8c39c3adda410c09f0be710317cf2..10f316e61354fa2aeae3c8a1032041bc88214ef1 100644
--- a/content/browser/appcache/appcache_internals_ui.cc
+++ b/content/browser/appcache/appcache_internals_ui.cc
@@ -270,7 +270,6 @@ void AppCacheInternalsUI::Proxy::HandleFileDetailsRequest() {
preparing_response_ = true;
appcache_service_->storage()->LoadResponseInfo(
GURL(response_enquiries_.front().manifest_url),
- response_enquiries_.front().group_id,
response_enquiries_.front().response_id, this);
}
@@ -292,8 +291,7 @@ void AppCacheInternalsUI::Proxy::OnResponseInfoLoaded(
base::CheckedNumeric<size_t>(amount_to_read).ValueOrDie()));
std::unique_ptr<AppCacheResponseReader> reader(
appcache_service_->storage()->CreateResponseReader(
- GURL(response_enquiry.manifest_url), response_enquiry.group_id,
- response_enquiry.response_id));
+ GURL(response_enquiry.manifest_url), response_enquiry.response_id));
reader->ReadData(
response_data.get(), amount_to_read,
« no previous file with comments | « no previous file | content/browser/appcache/appcache_request_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698