Index: storage/browser/quota/quota_database.cc |
diff --git a/storage/browser/quota/quota_database.cc b/storage/browser/quota/quota_database.cc |
index 85e0000645c35c8d3dac722c82d997a69ebcb6c2..b7b4ad31eeea7cc46fc403b6f6e88d6eeeba77f7 100644 |
--- a/storage/browser/quota/quota_database.cc |
+++ b/storage/browser/quota/quota_database.cc |
@@ -343,7 +343,8 @@ bool QuotaDatabase::GetLRUOrigin( |
if (exceptions.find(url) != exceptions.end()) |
continue; |
if (special_storage_policy && |
- special_storage_policy->IsStorageUnlimited(url)) |
+ (special_storage_policy->IsStorageDurable(url) || |
+ special_storage_policy->IsStorageUnlimited(url))) |
continue; |
*origin = url; |
return true; |