summaryrefslogtreecommitdiffstats
path: root/chromium/content/common/gpu/gpu_rendering_stats.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/common/gpu/gpu_rendering_stats.cc')
-rw-r--r--chromium/content/common/gpu/gpu_rendering_stats.cc35
1 files changed, 0 insertions, 35 deletions
diff --git a/chromium/content/common/gpu/gpu_rendering_stats.cc b/chromium/content/common/gpu/gpu_rendering_stats.cc
deleted file mode 100644
index 88e54f08f6e..00000000000
--- a/chromium/content/common/gpu/gpu_rendering_stats.cc
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "content/common/gpu/gpu_rendering_stats.h"
-
-namespace content {
-
-GpuRenderingStats::GpuRenderingStats()
- : global_texture_upload_count(0),
- texture_upload_count(0),
- global_video_memory_bytes_allocated(0) {
-}
-
-GpuRenderingStats::~GpuRenderingStats() {
-}
-
-void GpuRenderingStats::EnumerateFields(
- cc::RenderingStats::Enumerator* enumerator) const {
- enumerator->AddInt("globalTextureUploadCount", global_texture_upload_count);
- enumerator->AddTimeDeltaInSecondsF("globalTotalTextureUploadTimeInSeconds",
- global_total_texture_upload_time);
- enumerator->AddInt("textureUploadCount", texture_upload_count);
- enumerator->AddTimeDeltaInSecondsF("totalTextureUploadTimeInSeconds",
- total_texture_upload_time);
- enumerator->AddTimeDeltaInSecondsF(
- "globalTotalProcessingCommandsTimeInSeconds",
- global_total_processing_commands_time);
- enumerator->AddTimeDeltaInSecondsF("totalProcessingCommandsTimeInSeconds",
- total_processing_commands_time);
- enumerator->AddInt64("globalVideoMemoryBytesAllocated",
- global_video_memory_bytes_allocated);
-}
-
-} // namespace content