| 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 2c20f290285b9513a0118c752514651c24d76fb6..119e5e6f2b90327caa62c37aabf3e0f4a29db958 100644
|
| --- a/third_party/WebKit/Source/platform/heap/ThreadState.cpp
|
| +++ b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
|
| @@ -1359,7 +1359,7 @@ void ThreadState::addInterruptor(PassOwnPtr<BlinkGCInterruptor> interruptor)
|
| SafePointScope scope(BlinkGC::HeapPointersOnStack);
|
| {
|
| MutexLocker locker(threadAttachMutex());
|
| - m_interruptors.append(interruptor);
|
| + m_interruptors.append(std::move(interruptor));
|
| }
|
| }
|
|
|
|
|