Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1241)

Unified Diff: content/common/gpu/gpu_memory_uma_stats.h

Issue 1420533009: Cleanup GpuMemoryManager and helpers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more cleanup. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/gpu/gpu_memory_manager_unittest.cc ('k') | content/common/gpu/gpu_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/gpu_memory_uma_stats.h
diff --git a/content/common/gpu/gpu_memory_uma_stats.h b/content/common/gpu/gpu_memory_uma_stats.h
index 467619d35b8e1751db703ce4a447b54f0597cf51..f20376bddb67e6c27135df2ee34587e2294ad20e 100644
--- a/content/common/gpu/gpu_memory_uma_stats.h
+++ b/content/common/gpu/gpu_memory_uma_stats.h
@@ -15,8 +15,6 @@ struct GPUMemoryUmaStats {
GPUMemoryUmaStats()
: bytes_allocated_current(0),
bytes_allocated_max(0),
- bytes_limit(0),
- client_count(0),
context_group_count(0) {
}
@@ -26,17 +24,8 @@ struct GPUMemoryUmaStats {
// The maximum number of bytes ever allocated at once.
size_t bytes_allocated_max;
- // The memory limit being imposed by the memory manager.
- size_t bytes_limit;
-
- // The number of managed memory clients.
- size_t client_count;
-
// The number of context groups.
size_t context_group_count;
-
- // The number of visible windows.
- uint32 window_count;
};
} // namespace content
« no previous file with comments | « content/common/gpu/gpu_memory_manager_unittest.cc ('k') | content/common/gpu/gpu_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698