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

Unified Diff: chrome/browser/ui/webui/quota_internals/quota_internals_proxy.h

Issue 2592793002: Revert of Change how the quota system computes the total poolsize for temporary storage (Closed)
Patch Set: Created 4 years 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/ui/webui/quota_internals/quota_internals_proxy.h
diff --git a/chrome/browser/ui/webui/quota_internals/quota_internals_proxy.h b/chrome/browser/ui/webui/quota_internals/quota_internals_proxy.h
index c8e750f8cafdc6e023816bb2d6b66242d1f360c1..b3e3d66122a2ab1eb71d969ea9e1aee98c57f33d 100644
--- a/chrome/browser/ui/webui/quota_internals/quota_internals_proxy.h
+++ b/chrome/browser/ui/webui/quota_internals/quota_internals_proxy.h
@@ -58,8 +58,10 @@ class QuotaInternalsProxy
void ReportStatistics(const Statistics& stats);
// Called on IO Thread by QuotaManager as callback.
- void DidGetSettings(const storage::QuotaSettings& settings);
- void DidGetCapacity(int64_t total_space, int64_t available_space);
+ void DidGetAvailableSpace(storage::QuotaStatusCode status, int64_t space);
+ void DidGetGlobalQuota(storage::StorageType type,
+ storage::QuotaStatusCode status,
+ int64_t quota);
void DidGetGlobalUsage(storage::StorageType type,
int64_t usage,
int64_t unlimited_usage);

Powered by Google App Engine
This is Rietveld 408576698