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

Unified Diff: storage/browser/quota/usage_tracker.cc

Issue 1782053004: Change how the quota system computes the total poolsize for temporary storage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: big delta Created 4 years, 2 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: storage/browser/quota/usage_tracker.cc
diff --git a/storage/browser/quota/usage_tracker.cc b/storage/browser/quota/usage_tracker.cc
index e324bfe7d28598e79145a7c5e902c908fae9ef9a..11cb959a2505776a3eb8e156a2edbc8aeeb097a3 100644
--- a/storage/browser/quota/usage_tracker.cc
+++ b/storage/browser/quota/usage_tracker.cc
@@ -139,6 +139,13 @@ void UsageTracker::UpdateUsageCache(QuotaClient::ID client_id,
client_tracker->UpdateUsageCache(origin, delta);
}
+int64_t UsageTracker::GetCachedUsage() const {
+ int64_t usage = 0;
+ for (const auto& client_id_and_tracker : client_tracker_map_)
+ usage += client_id_and_tracker.second->GetCachedUsage();
+ return usage;
+}
+
void UsageTracker::GetCachedHostsUsage(
std::map<std::string, int64_t>* host_usage) const {
DCHECK(host_usage);

Powered by Google App Engine
This is Rietveld 408576698