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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.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/modules/webaudio/AudioWorkletThread.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.cpp b/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.cpp
index d14a93743972e2cf3dbe0c668a40615c2f89ed56..199c6861f754c25241390aa7197219f5cb486b52 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.cpp
@@ -27,8 +27,8 @@ std::unique_ptr<AudioWorkletThread> AudioWorkletThread::create(
TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("audio-worklet"),
"AudioWorkletThread::create");
DCHECK(isMainThread());
- return wrapUnique(new AudioWorkletThread(std::move(workerLoaderProxy),
- workerReportingProxy));
+ return WTF::wrapUnique(new AudioWorkletThread(std::move(workerLoaderProxy),
+ workerReportingProxy));
}
AudioWorkletThread::AudioWorkletThread(

Powered by Google App Engine
This is Rietveld 408576698