OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/disk_cache/backend_impl.h" | 5 #include "net/disk_cache/backend_impl.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/histogram.h" | 8 #include "base/histogram.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
(...skipping 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1068 } | 1068 } |
1069 } | 1069 } |
1070 } | 1070 } |
1071 | 1071 |
1072 UMA_HISTOGRAM_TIMES(L"DiskCache.TotalTrimTime", Time::Now() - start); | 1072 UMA_HISTOGRAM_TIMES(L"DiskCache.TotalTrimTime", Time::Now() - start); |
1073 Trace("*** Trim Cache end ***"); | 1073 Trace("*** Trim Cache end ***"); |
1074 return; | 1074 return; |
1075 } | 1075 } |
1076 | 1076 |
1077 void BackendImpl::ReportTrimTimes(EntryImpl* entry) { | 1077 void BackendImpl::ReportTrimTimes(EntryImpl* entry) { |
1078 std::wstring name(StringPrintf(L"DiskCache.TrimAge_%d", | 1078 static bool first_time = true; |
1079 data_->header.experiment)); | 1079 if (first_time) { |
1080 static Histogram counter(name.c_str(), 1, 10000, 50); | 1080 first_time = false; |
1081 counter.SetFlags(kUmaTargetedHistogramFlag); | 1081 std::wstring name(StringPrintf(L"DiskCache.TrimAge_%d", |
1082 counter.Add((Time::Now() - entry->GetLastUsed()).InHours()); | 1082 data_->header.experiment)); |
| 1083 static Histogram counter(name.c_str(), 1, 10000, 50); |
| 1084 counter.SetFlags(kUmaTargetedHistogramFlag); |
| 1085 counter.Add((Time::Now() - entry->GetLastUsed()).InHours()); |
| 1086 } |
1083 } | 1087 } |
1084 | 1088 |
1085 void BackendImpl::AddStorageSize(int32 bytes) { | 1089 void BackendImpl::AddStorageSize(int32 bytes) { |
1086 data_->header.num_bytes += bytes; | 1090 data_->header.num_bytes += bytes; |
1087 DCHECK(data_->header.num_bytes >= 0); | 1091 DCHECK(data_->header.num_bytes >= 0); |
1088 | 1092 |
1089 if (data_->header.num_bytes > max_size_) | 1093 if (data_->header.num_bytes > max_size_) |
1090 TrimCache(false); | 1094 TrimCache(false); |
1091 } | 1095 } |
1092 | 1096 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1204 | 1208 |
1205 return num_dirty; | 1209 return num_dirty; |
1206 } | 1210 } |
1207 | 1211 |
1208 bool BackendImpl::CheckEntry(EntryImpl* cache_entry) { | 1212 bool BackendImpl::CheckEntry(EntryImpl* cache_entry) { |
1209 RankingsNode* rankings = cache_entry->rankings()->Data(); | 1213 RankingsNode* rankings = cache_entry->rankings()->Data(); |
1210 return !rankings->pointer; | 1214 return !rankings->pointer; |
1211 } | 1215 } |
1212 | 1216 |
1213 } // namespace disk_cache | 1217 } // namespace disk_cache |
OLD | NEW |