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

Unified Diff: third_party/WebKit/Source/modules/webaudio/ConvolverNode.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/ConvolverNode.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/ConvolverNode.cpp b/third_party/WebKit/Source/modules/webaudio/ConvolverNode.cpp
index 36287ff52d8591ab93103fd18954a6e19c84f659..9ba78ffee90a155af10cc39bc58cdf3e60eb0a15 100644
--- a/third_party/WebKit/Source/modules/webaudio/ConvolverNode.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/ConvolverNode.cpp
@@ -136,7 +136,7 @@ void ConvolverHandler::setBuffer(AudioBuffer* buffer,
bufferBus->setSampleRate(buffer->sampleRate());
// Create the reverb with the given impulse response.
- std::unique_ptr<Reverb> reverb = wrapUnique(new Reverb(
+ std::unique_ptr<Reverb> reverb = WTF::wrapUnique(new Reverb(
bufferBus.get(), AudioUtilities::kRenderQuantumFrames, MaxFFTSize, 2,
context() && context()->hasRealtimeConstraint(), m_normalize));

Powered by Google App Engine
This is Rietveld 408576698