Searched defs:QuotaInfo (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_quota_helper.cc9 BrowsingDataQuotaHelper::QuotaInfo::QuotaInfo() function in class:BrowsingDataQuotaHelper::QuotaInfo
14 BrowsingDataQuotaHelper::QuotaInfo::QuotaInfo(const std::string& host) function in class:BrowsingDataQuotaHelper::QuotaInfo
20 BrowsingDataQuotaHelper::QuotaInfo::QuotaInfo(const std::string& host, function in class:BrowsingDataQuotaHelper::QuotaInfo
29 BrowsingDataQuotaHelper::QuotaInfo::~QuotaInfo() {}
45 bool BrowsingDataQuotaHelper::QuotaInfo::operator <(
46 const BrowsingDataQuotaHelper::QuotaInfo
[all...]
H A Dbrowsing_data_quota_helper.h37 // QuotaInfo contains host-based quota and usage information for persistent
39 struct QuotaInfo { struct in class:BrowsingDataQuotaHelper
40 QuotaInfo();
41 explicit QuotaInfo(const std::string& host);
42 QuotaInfo(const std::string& host,
46 ~QuotaInfo();
51 bool operator <(const QuotaInfo& rhs) const;
52 bool operator ==(const QuotaInfo& rhs) const;
60 typedef std::list<QuotaInfo> QuotaInfoArray;
H A Dbrowsing_data_quota_helper_unittest.cc25 typedef BrowsingDataQuotaHelper::QuotaInfo QuotaInfo; typedef in class:BrowsingDataQuotaHelperTest
152 std::set<QuotaInfo> expected, actual;
154 expected.insert(QuotaInfo("example.com", 11, 100, 1));
155 expected.insert(QuotaInfo("example2.com", 1000, 0, 0));
181 std::set<QuotaInfo> expected, actual;
183 expected.insert(QuotaInfo("example.com", 11, 100, 1));
184 expected.insert(QuotaInfo("example2.com", 1000, 0, 0));

Completed in 77 milliseconds