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

Unified Diff: chrome/browser/browsing_data/browsing_data_quota_helper_impl.h

Issue 10948006: Cleanup: quota::HostQuotaCallback do not need to pass host and type as arguments (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed unittests somehow missed in previous patch Created 8 years, 3 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: chrome/browser/browsing_data/browsing_data_quota_helper_impl.h
diff --git a/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h b/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h
index 93680b50e1c0c643d45c7b57145d062e50386a72..fdf15c75410f4ffae25a5983d9df7d86c4d7e463 100644
--- a/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h
+++ b/chrome/browser/browsing_data/browsing_data_quota_helper_impl.h
@@ -50,9 +50,9 @@ class BrowsingDataQuotaHelperImpl : public BrowsingDataQuotaHelper {
int64 usage);
void OnComplete();
- void DidRevokeHostQuota(quota::QuotaStatusCode status,
- const std::string& host,
+ void DidRevokeHostQuota(const std::string& host,
quota::StorageType type,
+ quota::QuotaStatusCode status,
int64 quota);
scoped_refptr<quota::QuotaManager> quota_manager_;

Powered by Google App Engine
This is Rietveld 408576698