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

Unified Diff: webkit/quota/quota_manager.h

Issue 15907004: [Quota] Add UsageTracker::GetGlobalLimitedUsage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: +LazyInitialize Created 7 years, 7 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 | « no previous file | webkit/quota/quota_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/quota/quota_manager.h
diff --git a/webkit/quota/quota_manager.h b/webkit/quota/quota_manager.h
index e1a7801959e9c8f8e26e17053063ec3701403eb2..1f28e5a3d2d3e4d7f793ab1f41e06d5f1ba7ff6c 100644
--- a/webkit/quota/quota_manager.h
+++ b/webkit/quota/quota_manager.h
@@ -48,15 +48,13 @@ struct QuotaManagerDeleter;
struct WEBKIT_STORAGE_EXPORT UsageAndQuota {
int64 usage;
- int64 global_usage;
- int64 global_unlimited_usage;
+ int64 global_limited_usage;
int64 quota;
int64 available_disk_space;
UsageAndQuota();
UsageAndQuota(int64 usage,
- int64 global_usage,
- int64 global_unlimited_usage,
+ int64 global_limited_usage,
int64 quota,
int64 available_disk_space);
};
« no previous file with comments | « no previous file | webkit/quota/quota_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698