| Index: third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp b/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
|
| index fccc4e39d8b7a2bfa6e9349fa3a1bd3e43f26f61..35d55c224fc427bd7912e70ef6bfdb1071b85245 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp
|
| @@ -96,7 +96,7 @@ void WorkerBackingThread::initialize()
|
| m_backingThread->initialize();
|
|
|
| OwnPtr<V8IsolateInterruptor> interruptor = adoptPtr(new V8IsolateInterruptor(m_isolate));
|
| - ThreadState::current()->addInterruptor(interruptor.release());
|
| + ThreadState::current()->addInterruptor(std::move(interruptor));
|
| ThreadState::current()->registerTraceDOMWrappers(m_isolate, V8GCController::traceDOMWrappers);
|
| if (RuntimeEnabledFeatures::v8IdleTasksEnabled())
|
| V8PerIsolateData::enableIdleTasks(m_isolate, adoptPtr(new V8IdleTaskRunner(backingThread().platformThread().scheduler())));
|
|
|