| Index: chrome/browser/performance_monitor/process_metrics_history.cc
|
| diff --git a/chrome/browser/performance_monitor/process_metrics_history.cc b/chrome/browser/performance_monitor/process_metrics_history.cc
|
| index f9ca171e903c21a3d88f59cbd061410ab4e9c211..7c724e0b618cf31af29c6ec375cba10537988c7c 100644
|
| --- a/chrome/browser/performance_monitor/process_metrics_history.cc
|
| +++ b/chrome/browser/performance_monitor/process_metrics_history.cc
|
| @@ -114,13 +114,6 @@ void ProcessMetricsHistory::RunPerformanceTriggers() {
|
| if (min_cpu_usage_ > kHighCPUUtilizationThreshold)
|
| UMA_HISTOGRAM_BOOLEAN("PerformanceMonitor.HighCPU.PluginProcess", true);
|
| break;
|
| - case content::PROCESS_TYPE_WORKER:
|
| - UMA_HISTOGRAM_CUSTOM_COUNTS(
|
| - "PerformanceMonitor.AverageCPU.WorkerProcess", average_cpu_usage,
|
| - kHistogramMin, kHistogramMax, kHistogramBucketCount);
|
| - if (min_cpu_usage_ > kHighCPUUtilizationThreshold)
|
| - UMA_HISTOGRAM_BOOLEAN("PerformanceMonitor.HighCPU.WorkerProcess", true);
|
| - break;
|
| case content::PROCESS_TYPE_GPU:
|
| UMA_HISTOGRAM_CUSTOM_COUNTS(
|
| "PerformanceMonitor.AverageCPU.GPUProcess", average_cpu_usage,
|
|
|