Index: net/disk_cache/block_files.cc |
=================================================================== |
--- net/disk_cache/block_files.cc (revision 10269) |
+++ net/disk_cache/block_files.cc (working copy) |
@@ -66,7 +66,7 @@ |
if (target != size) { |
header->empty[target - size - 1]++; |
} |
- HISTOGRAM_TIMES(L"DiskCache.CreateBlock", Time::Now() - start); |
+ HISTOGRAM_TIMES("DiskCache.CreateBlock", Time::Now() - start); |
return true; |
} |
} |
@@ -114,7 +114,7 @@ |
} |
header->num_entries--; |
DCHECK(header->num_entries >= 0); |
- HISTOGRAM_TIMES(L"DiskCache.DeleteBlock", Time::Now() - start); |
+ HISTOGRAM_TIMES("DiskCache.DeleteBlock", Time::Now() - start); |
} |
// Restores the "empty counters" and allocation hints. |
@@ -323,7 +323,7 @@ |
return NULL; |
break; |
} |
- HISTOGRAM_TIMES(L"DiskCache.GetFileForNewBlock", Time::Now() - start); |
+ HISTOGRAM_TIMES("DiskCache.GetFileForNewBlock", Time::Now() - start); |
return file; |
} |