Index: chrome/browser/browsing_data/browsing_data_quota_helper.h |
diff --git a/chrome/browser/browsing_data/browsing_data_quota_helper.h b/chrome/browser/browsing_data/browsing_data_quota_helper.h |
index 06892827e67dea055c22f05cc59c60229438eb2c..86332a3d8909c0097428252d64f740a310729347 100644 |
--- a/chrome/browser/browsing_data/browsing_data_quota_helper.h |
+++ b/chrome/browser/browsing_data/browsing_data_quota_helper.h |
@@ -41,7 +41,8 @@ class BrowsingDataQuotaHelper |
explicit QuotaInfo(const std::string& host); |
QuotaInfo(const std::string& host, |
int64 temporary_usage, |
- int64 persistent_usage); |
+ int64 persistent_usage, |
+ int64 syncable_usage); |
~QuotaInfo(); |
// Certain versions of MSVC 2008 have bad implementations of ADL for nested |
@@ -53,6 +54,7 @@ class BrowsingDataQuotaHelper |
std::string host; |
int64 temporary_usage; |
int64 persistent_usage; |
+ int64 syncable_usage; |
}; |
typedef std::list<QuotaInfo> QuotaInfoArray; |