| Index: content/common/gpu/gpu_command_buffer_stub.cc
|
| diff --git a/content/common/gpu/gpu_command_buffer_stub.cc b/content/common/gpu/gpu_command_buffer_stub.cc
|
| index 0fb6c6e69baaa14e1cadb87cf16f57218b16cce8..e6e1e78bc4597ceb4fd3b4aab203cdd2ede624d1 100644
|
| --- a/content/common/gpu/gpu_command_buffer_stub.cc
|
| +++ b/content/common/gpu/gpu_command_buffer_stub.cc
|
| @@ -53,9 +53,11 @@ class GpuCommandBufferMemoryTracker : public gpu::gles2::MemoryTracker {
|
| channel->gpu_channel_manager()->gpu_memory_manager());
|
| }
|
|
|
| - void TrackMemoryAllocatedChange(size_t old_size, size_t new_size) {
|
| + void TrackMemoryAllocatedChange(size_t old_size,
|
| + size_t new_size,
|
| + gpu::gles2::MemoryTracker::Pool pool) {
|
| gpu_memory_manager_tracking_group_->TrackMemoryAllocatedChange(
|
| - old_size, new_size);
|
| + old_size, new_size, pool);
|
| }
|
|
|
| private:
|
|
|