Index: content/public/common/gpu_rendering_stats.cc |
diff --git a/content/public/browser/download_save_info.cc b/content/public/common/gpu_rendering_stats.cc |
similarity index 51% |
copy from content/public/browser/download_save_info.cc |
copy to content/public/common/gpu_rendering_stats.cc |
index 3093ee6844570c5f6a82a056391272b61ccd1aaa..bbe38b9f82b42a0048856c656fe7a8b2bb658624 100644 |
--- a/content/public/browser/download_save_info.cc |
+++ b/content/public/common/gpu_rendering_stats.cc |
@@ -2,15 +2,16 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "content/public/browser/download_save_info.h" |
+#include "content/public/common/gpu_rendering_stats.h" |
namespace content { |
-DownloadSaveInfo::DownloadSaveInfo() |
- : offset(0), prompt_for_save_location(false) { |
+GpuRenderingStats::GpuRenderingStats() |
+ : global_texture_upload_count(0), |
+ texture_upload_count(0) { |
} |
-DownloadSaveInfo::~DownloadSaveInfo() { |
+GpuRenderingStats::~GpuRenderingStats() { |
} |
} // namespace content |