Index: content/gpu/gpu_info_collector_win.cc |
diff --git a/content/gpu/gpu_info_collector_win.cc b/content/gpu/gpu_info_collector_win.cc |
index fa26c3571ece2f509543ad78616245528cd0edb5..57ee1d8619e1a64a5986b9af67ab3614923b0b90 100644 |
--- a/content/gpu/gpu_info_collector_win.cc |
+++ b/content/gpu/gpu_info_collector_win.cc |
@@ -136,12 +136,10 @@ content::GpuPerformanceStats RetrieveGpuPerformanceStats() { |
if (stats.gaming == 0.0) |
LOG(ERROR) << "Could not read gaming score from assessment results."; |
- UMA_HISTOGRAM_CUSTOM_COUNTS("GPU.WinSAT.OverallScore", |
- stats.overall, 0.0, 50.0, 50); |
- UMA_HISTOGRAM_CUSTOM_COUNTS("GPU.WinSAT.GraphicsScore", |
- stats.graphics, 0.0, 50.0, 50); |
- UMA_HISTOGRAM_CUSTOM_COUNTS("GPU.WinSAT.GamingScore", |
- stats.gaming, 0.0, 50.0, 50); |
+ UMA_HISTOGRAM_ENUMERATION("GPU.WinSAT.OverallScore", stats.overall * 10, 200); |
jar (doing other things)
2012/08/04 02:04:46
In addition to my comment below....
I was surpris
dtu
2012/08/06 21:41:47
Done.
|
+ UMA_HISTOGRAM_ENUMERATION("GPU.WinSAT.GraphicsScore", |
+ stats.graphics * 10, 200); |
+ UMA_HISTOGRAM_ENUMERATION("GPU.WinSAT.GamingScore", stats.gaming * 10, 200); |
jar (doing other things)
2012/08/04 02:04:46
Best practice, when changing the parameters by whi
dtu
2012/08/06 21:41:47
Done.
|
UMA_HISTOGRAM_TIMES("GPU.WinSAT.ReadResultsFileTime", |
base::TimeTicks::Now() - start_time); |