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

Unified Diff: third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.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/BiquadFilterNode.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.cpp b/third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.cpp
index 8cf237779d6123c6908d51eb4b62388e8cf231ca..131f2954d2b5e8640804bf00e91717c7d9e9f8be 100644
--- a/third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.cpp
@@ -44,9 +44,9 @@ BiquadFilterNode::BiquadFilterNode(BaseAudioContext& context)
m_detune(AudioParam::create(context, ParamTypeBiquadFilterDetune, 0.0)) {
setHandler(AudioBasicProcessorHandler::create(
AudioHandler::NodeTypeBiquadFilter, *this, context.sampleRate(),
- wrapUnique(new BiquadProcessor(context.sampleRate(), 1,
- m_frequency->handler(), m_q->handler(),
- m_gain->handler(), m_detune->handler()))));
+ WTF::wrapUnique(new BiquadProcessor(
+ context.sampleRate(), 1, m_frequency->handler(), m_q->handler(),
+ m_gain->handler(), m_detune->handler()))));
// Explicitly set the filter type so that any histograms get updated with the
// default value. Otherwise, the histogram won't ever show it.

Powered by Google App Engine
This is Rietveld 408576698