Index: webkit/quota/quota_temporary_storage_evictor.cc |
diff --git a/webkit/quota/quota_temporary_storage_evictor.cc b/webkit/quota/quota_temporary_storage_evictor.cc |
index 689db4ddd946b03defdedd06eaa45504b9e54613..452bb4ff5cde9c6bbf6024c01281f1a8e0962a51 100644 |
--- a/webkit/quota/quota_temporary_storage_evictor.cc |
+++ b/webkit/quota/quota_temporary_storage_evictor.cc |
@@ -34,6 +34,16 @@ namespace quota { |
const int QuotaTemporaryStorageEvictor:: |
kMinAvailableDiskSpaceToStartEvictionNotSpecified = -1; |
+QuotaTemporaryStorageEvictor::EvictionRoundStatistics::EvictionRoundStatistics() |
+ : in_round(false), |
+ is_initialized(false), |
+ usage_overage_at_round(-1), |
+ diskspace_shortage_at_round(-1), |
+ usage_on_beginning_of_round(-1), |
+ usage_on_end_of_round(-1), |
+ num_evicted_origins_in_round(0) { |
+} |
+ |
QuotaTemporaryStorageEvictor::QuotaTemporaryStorageEvictor( |
QuotaEvictionHandler* quota_eviction_handler, |
int64 interval_ms) |