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 eebae53a66630a644b520479632ef6c58f551fa1..f9afe4305f38e1bd74d4d74874f7d531c2528821 100644 |
--- a/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp |
+++ b/third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp |
@@ -69,19 +69,19 @@ void WorkerBackingThread::initialize() { |
V8Initializer::initializeWorker(m_isolate); |
std::unique_ptr<V8IsolateInterruptor> interruptor = |
- makeUnique<V8IsolateInterruptor>(m_isolate); |
+ WTF::makeUnique<V8IsolateInterruptor>(m_isolate); |
ThreadState::current()->addInterruptor(std::move(interruptor)); |
ThreadState::current()->registerTraceDOMWrappers( |
m_isolate, V8GCController::traceDOMWrappers, nullptr, nullptr); |
if (RuntimeEnabledFeatures::v8IdleTasksEnabled()) |
V8PerIsolateData::enableIdleTasks( |
- m_isolate, wrapUnique(new V8IdleTaskRunner( |
+ m_isolate, WTF::wrapUnique(new V8IdleTaskRunner( |
backingThread().platformThread().scheduler()))); |
if (m_isOwningThread) |
Platform::current()->didStartWorkerThread(); |
V8PerIsolateData::from(m_isolate)->setThreadDebugger( |
- makeUnique<WorkerThreadDebugger>(m_isolate)); |
+ WTF::makeUnique<WorkerThreadDebugger>(m_isolate)); |
} |
void WorkerBackingThread::shutdown() { |