| Index: content/child/child_gpu_memory_buffer_manager.cc
|
| diff --git a/content/child/child_gpu_memory_buffer_manager.cc b/content/child/child_gpu_memory_buffer_manager.cc
|
| index c83ceea64155878cb1e3e3ae0de17bff2c53f002..e88b6bd4b595474c3ac4f135f489449ba9401f40 100644
|
| --- a/content/child/child_gpu_memory_buffer_manager.cc
|
| +++ b/content/child/child_gpu_memory_buffer_manager.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/child/child_gpu_memory_buffer_manager.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "content/common/child_process_messages.h"
|
| #include "content/common/generic_shared_memory_id_generator.h"
|
| #include "content/common/gpu/client/gpu_memory_buffer_impl.h"
|
| @@ -57,7 +59,7 @@ ChildGpuMemoryBufferManager::AllocateGpuMemoryBuffer(const gfx::Size& size,
|
| return nullptr;
|
| }
|
|
|
| - return buffer.Pass();
|
| + return std::move(buffer);
|
| }
|
|
|
| scoped_ptr<gfx::GpuMemoryBuffer>
|
|
|