| Index: content/common/gpu/client/gpu_memory_buffer_impl.cc
|
| diff --git a/content/common/gpu/client/gpu_memory_buffer_impl.cc b/content/common/gpu/client/gpu_memory_buffer_impl.cc
|
| index 2706bf12d2174c75326d9709b4c8a0b7b7aa7f84..f0232fdfcfe5d90f8ed2457e8d4e23c0e628b7e4 100644
|
| --- a/content/common/gpu/client/gpu_memory_buffer_impl.cc
|
| +++ b/content/common/gpu/client/gpu_memory_buffer_impl.cc
|
| @@ -8,10 +8,15 @@
|
|
|
| namespace content {
|
|
|
| -GpuMemoryBufferImpl::GpuMemoryBufferImpl(const gfx::Size& size,
|
| +GpuMemoryBufferImpl::GpuMemoryBufferImpl(gfx::GpuMemoryBufferId id,
|
| + const gfx::Size& size,
|
| Format format,
|
| const DestructionCallback& callback)
|
| - : size_(size), format_(format), callback_(callback), mapped_(false) {
|
| + : id_(id),
|
| + size_(size),
|
| + format_(format),
|
| + callback_(callback),
|
| + mapped_(false) {
|
| }
|
|
|
| GpuMemoryBufferImpl::~GpuMemoryBufferImpl() {
|
|
|