Index: content/common/gpu/client/command_buffer_proxy_impl.cc |
diff --git a/content/common/gpu/client/command_buffer_proxy_impl.cc b/content/common/gpu/client/command_buffer_proxy_impl.cc |
index ded3bafbd00b4132bbb2b65cf5b317f36165162d..1a604959312899cb42c0fc5e52b12531125444f1 100644 |
--- a/content/common/gpu/client/command_buffer_proxy_impl.cc |
+++ b/content/common/gpu/client/command_buffer_proxy_impl.cc |
@@ -4,6 +4,7 @@ |
#include "content/common/gpu/client/command_buffer_proxy_impl.h" |
+#include <utility> |
#include <vector> |
#include "base/callback.h" |
@@ -383,7 +384,7 @@ scoped_refptr<gpu::Buffer> CommandBufferProxyImpl::CreateTransferBuffer( |
*id = new_id; |
scoped_refptr<gpu::Buffer> buffer( |
- gpu::MakeBufferFromSharedMemory(shared_memory.Pass(), size)); |
+ gpu::MakeBufferFromSharedMemory(std::move(shared_memory), size)); |
return buffer; |
} |