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

Unified Diff: third_party/WebKit/Source/platform/audio/Reverb.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/platform/audio/Reverb.cpp
diff --git a/third_party/WebKit/Source/platform/audio/Reverb.cpp b/third_party/WebKit/Source/platform/audio/Reverb.cpp
index 0f7b6abfa8fb3ac9f594eead05d9758c5a61eba5..8fc3ae7ec80bea30671f5ee8f616ecd4c17b7055 100644
--- a/third_party/WebKit/Source/platform/audio/Reverb.cpp
+++ b/third_party/WebKit/Source/platform/audio/Reverb.cpp
@@ -129,7 +129,7 @@ void Reverb::initialize(AudioBus* impulseResponseBuffer,
for (size_t i = 0; i < numResponseChannels; ++i) {
AudioChannel* channel = impulseResponseBuffer->channel(i);
- std::unique_ptr<ReverbConvolver> convolver = wrapUnique(
+ std::unique_ptr<ReverbConvolver> convolver = WTF::wrapUnique(
new ReverbConvolver(channel, renderSliceSize, maxFFTSize,
convolverRenderPhase, useBackgroundThreads));
m_convolvers.append(std::move(convolver));
« no previous file with comments | « third_party/WebKit/Source/platform/audio/Panner.cpp ('k') | third_party/WebKit/Source/platform/audio/ReverbConvolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698