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

Unified Diff: content/browser/quota/quota_temporary_storage_evictor_unittest.cc

Issue 1221523003: Add a SiteEngagementEvictionPolicy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@get_total_engagement_points
Patch Set: Extract SiteEngagementScoreProvider interface Created 5 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: content/browser/quota/quota_temporary_storage_evictor_unittest.cc
diff --git a/content/browser/quota/quota_temporary_storage_evictor_unittest.cc b/content/browser/quota/quota_temporary_storage_evictor_unittest.cc
index ba414fc333d733dd945b2ec827f6994beab74d2b..4ff525482415aae3566ecc26465188e9cbeb911f 100644
--- a/content/browser/quota/quota_temporary_storage_evictor_unittest.cc
+++ b/content/browser/quota/quota_temporary_storage_evictor_unittest.cc
@@ -59,8 +59,9 @@ class MockQuotaEvictionHandler : public storage::QuotaEvictionHandler {
callback.Run(storage::kQuotaStatusOk, quota_and_usage);
}
- void GetLRUOrigin(StorageType type,
- const GetLRUOriginCallback& callback) override {
+ void GetEvictionOrigin(
+ StorageType type,
+ const storage::GetEvictionOriginCallback& callback) override {
if (origin_order_.empty())
callback.Run(GURL());
else

Powered by Google App Engine
This is Rietveld 408576698