| 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 212b50d0ed90656e91aa3155a9d7695638f7ca89..8217951d404ee27898caef849e8717dd5281eeda 100644
|
| --- a/content/common/gpu/gpu_memory_manager.cc
|
| +++ b/content/common/gpu/gpu_memory_manager.cc
|
| @@ -240,4 +240,10 @@ void GpuMemoryManager::Manage() {
|
| GpuMemoryAllocation(0, GpuMemoryAllocation::kHasNoBuffers));
|
| }
|
|
|
| +void GpuMemoryManager::GetMemStats(content::GpuMemStats& stats) {
|
| + stats.currently_allocated_bytes = 16*1024*1024;
|
| + stats.max_concurrently_allocated_bytes = 32*1024*1024;
|
| + stats.total_bytes = 64*1024*1024;
|
| +}
|
| +
|
| #endif
|
|
|