Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Unified Diff: third_party/WebKit/Source/core/workers/WorkerBackingThread.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {

Powered by Google App Engine
This is Rietveld 408576698