| Index: content/common/gpu/gpu_memory_manager.cc
|
| diff --git a/content/common/gpu/gpu_memory_manager.cc b/content/common/gpu/gpu_memory_manager.cc
|
| index 4b9eb7c28886ac954bf33fe7fa39b66eeb509b3f..10f769c134b87f41ed75a19f0450a5de5fc78e14 100644
|
| --- a/content/common/gpu/gpu_memory_manager.cc
|
| +++ b/content/common/gpu/gpu_memory_manager.cc
|
| @@ -118,7 +118,7 @@ void GpuMemoryManager::SendUmaStatsToBrowser() {
|
| GPUMemoryUmaStats params;
|
| params.bytes_allocated_current = GetCurrentUsage();
|
| params.bytes_allocated_max = bytes_allocated_historical_max_;
|
| - params.context_group_count = tracking_groups_.size();
|
| + params.context_group_count = static_cast<uint32_t>(tracking_groups_.size());
|
| channel_manager_->Send(new GpuHostMsg_GpuMemoryUmaStats(params));
|
| }
|
| } // namespace content
|
|
|