| Index: ui/gl/gl_image_shared_memory.cc
|
| diff --git a/ui/gl/gl_image_shared_memory.cc b/ui/gl/gl_image_shared_memory.cc
|
| index 21c72c11b2b5007fdc208a2ccc48f7f223376086..c82000833301b453eb219e41f3e82718078dd1b4 100644
|
| --- a/ui/gl/gl_image_shared_memory.cc
|
| +++ b/ui/gl/gl_image_shared_memory.cc
|
| @@ -76,7 +76,7 @@ bool GLImageSharedMemory::Initialize(
|
| }
|
|
|
| DCHECK(!shared_memory_);
|
| - shared_memory_ = duped_shared_memory.Pass();
|
| + shared_memory_ = std::move(duped_shared_memory);
|
| shared_memory_id_ = shared_memory_id;
|
| return true;
|
| }
|
|
|