Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_COMMON_GPU_GPU_MEMORY_UMA_STATS_H_ | 5 #ifndef CONTENT_COMMON_GPU_GPU_MEMORY_UMA_STATS_H_ |
| 6 #define CONTENT_COMMON_GPU_GPU_MEMORY_UMA_STATS_H_ | 6 #define CONTENT_COMMON_GPU_GPU_MEMORY_UMA_STATS_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 | 9 |
| 10 namespace content { | 10 namespace content { |
| 11 | 11 |
| 12 // Memory usage statistics send periodically to the browser process to report | 12 // Memory usage statistics send periodically to the browser process to report |
| 13 // in UMA histograms if the GPU process crashes. | 13 // in UMA histograms if the GPU process crashes. |
| 14 struct GPUMemoryUmaStats { | 14 struct GPUMemoryUmaStats { |
| 15 GPUMemoryUmaStats() | 15 GPUMemoryUmaStats() |
| 16 : bytes_allocated_current(0), | 16 : bytes_allocated_current(0), |
| 17 bytes_allocated_max(0), | 17 bytes_allocated_max(0), |
| 18 bytes_limit(0), | 18 bytes_limit(0), |
| 19 client_count(0), | |
| 20 context_group_count(0) { | 19 context_group_count(0) { |
| 21 } | 20 } |
| 22 | 21 |
| 23 // The number of bytes currently allocated. | 22 // The number of bytes currently allocated. |
| 24 size_t bytes_allocated_current; | 23 size_t bytes_allocated_current; |
| 25 | 24 |
| 26 // The maximum number of bytes ever allocated at once. | 25 // The maximum number of bytes ever allocated at once. |
| 27 size_t bytes_allocated_max; | 26 size_t bytes_allocated_max; |
| 28 | 27 |
| 29 // The memory limit being imposed by the memory manager. | 28 // The memory limit being imposed by the memory manager. |
| 30 size_t bytes_limit; | 29 size_t bytes_limit; |
|
piman
2015/11/10 23:34:49
This could be removed, it's always 0 (see gpu_memo
sohanjg
2015/11/13 07:30:44
Done.
| |
| 31 | 30 |
| 32 // The number of managed memory clients. | |
| 33 size_t client_count; | |
| 34 | |
| 35 // The number of context groups. | 31 // The number of context groups. |
| 36 size_t context_group_count; | 32 size_t context_group_count; |
| 37 | 33 |
| 38 // The number of visible windows. | 34 // The number of visible windows. |
| 39 uint32 window_count; | 35 uint32 window_count; |
|
piman
2015/11/10 23:34:49
This could be removed too. It's not set anywhere (
sohanjg
2015/11/13 07:30:44
Done.
| |
| 40 }; | 36 }; |
| 41 | 37 |
| 42 } // namespace content | 38 } // namespace content |
| 43 | 39 |
| 44 #endif // CONTENT_COMMON_GPU_GPU_MEMORY_UMA_STATS_H_ | 40 #endif // CONTENT_COMMON_GPU_GPU_MEMORY_UMA_STATS_H_ |
| OLD | NEW |