Index: content/common/gpu/client/command_buffer_proxy.cc |
diff --git a/content/common/gpu/client/command_buffer_proxy.cc b/content/common/gpu/client/command_buffer_proxy.cc |
index 25bee42417b3d7f4611dc7f458b14dd4a388895b..4f6caa5f207b01840bf608cd9c46ac1d77625c0a 100644 |
--- a/content/common/gpu/client/command_buffer_proxy.cc |
+++ b/content/common/gpu/client/command_buffer_proxy.cc |
@@ -98,12 +98,13 @@ void CommandBufferProxy::OnConsoleMessage( |
} |
void CommandBufferProxy::SetMemoryAllocationChangedCallback( |
- const base::Callback<void(const GpuMemoryAllocation&)>& callback) { |
+ const base::Callback<void(const GpuMemoryAllocationForRenderer&)>& |
+ callback) { |
memory_allocation_changed_callback_ = callback; |
} |
void CommandBufferProxy::OnSetMemoryAllocation( |
- const GpuMemoryAllocation& allocation) { |
+ const GpuMemoryAllocationForRenderer& allocation) { |
if (!memory_allocation_changed_callback_.is_null()) |
memory_allocation_changed_callback_.Run(allocation); |
} |