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

Unified Diff: storage/browser/quota/client_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: poolSize Created 4 years, 5 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/client_usage_tracker.cc
diff --git a/storage/browser/quota/client_usage_tracker.cc b/storage/browser/quota/client_usage_tracker.cc
index 477fdb5e932ee46e86518756848ff2bbcbaa5ad4..207dbe8ec4f0044944ee4b9af077abab5df55043 100644
--- a/storage/browser/quota/client_usage_tracker.cc
+++ b/storage/browser/quota/client_usage_tracker.cc
@@ -165,6 +165,15 @@ void ClientUsageTracker::UpdateUsageCache(const GURL& origin, int64_t delta) {
AsWeakPtr(), origin));
}
+int64_t ClientUsageTracker::GetCachedUsage() const {
+ int64_t usage = 0;
+ for (const auto& host_and_usage_map : cached_usage_by_host_) {
+ for (const auto& origin_and_usage : host_and_usage_map.second)
+ usage += origin_and_usage.second;
+ }
+ return usage;
+}
+
void ClientUsageTracker::GetCachedHostsUsage(
std::map<std::string, int64_t>* host_usage) const {
DCHECK(host_usage);

Powered by Google App Engine
This is Rietveld 408576698