| Index: third_party/WebKit/Source/platform/heap/ThreadState.cpp
|
| diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.cpp b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
|
| index a6c8b6b25604ce6ad77a89fa1e408fd3eef44ce6..2ebb31b95a8a71c5e6308547ea83354dda3feaea 100644
|
| --- a/third_party/WebKit/Source/platform/heap/ThreadState.cpp
|
| +++ b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
|
| @@ -1311,7 +1311,7 @@ void ThreadState::addInterruptor(PassOwnPtr<BlinkGCInterruptor> interruptor)
|
| SafePointScope scope(BlinkGC::HeapPointersOnStack);
|
| {
|
| MutexLocker locker(m_heap->threadAttachMutex());
|
| - m_interruptors.append(interruptor);
|
| + m_interruptors.append(std::move(interruptor));
|
| }
|
| }
|
|
|
|
|