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

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: rebase Created 3 years, 10 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 | « storage/browser/quota/usage_tracker.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/quota/usage_tracker.cc
diff --git a/storage/browser/quota/usage_tracker.cc b/storage/browser/quota/usage_tracker.cc
index 041f94067ae40eeeddd88ae620284c190853e298..a29004e06df6e41d97dcaf4fbca491b0b873f10a 100644
--- a/storage/browser/quota/usage_tracker.cc
+++ b/storage/browser/quota/usage_tracker.cc
@@ -136,6 +136,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);
« no previous file with comments | « storage/browser/quota/usage_tracker.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698