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

Unified Diff: third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.cpp

Issue 2389253002: reflow comments in modules/{webaudio,vr} (Closed)
Patch Set: . Created 4 years, 2 months 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 c201ac685c1066819d8de80dd60760da01dd0a43..8cf237779d6123c6908d51eb4b62388e8cf231ca 100644
--- a/third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/BiquadFilterNode.cpp
@@ -48,8 +48,8 @@ BiquadFilterNode::BiquadFilterNode(BaseAudioContext& context)
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.
+ // Explicitly set the filter type so that any histograms get updated with the
+ // default value. Otherwise, the histogram won't ever show it.
setType("lowpass");
}
@@ -127,9 +127,10 @@ String BiquadFilterNode::type() const {
}
void BiquadFilterNode::setType(const String& type) {
- // For the Q histogram, we need to change the name of the AudioParam for the lowpass and
- // highpass filters so we know to count the Q value when it is set. And explicitly set the value
- // to itself so the histograms know the initial value.
+ // For the Q histogram, we need to change the name of the AudioParam for the
+ // lowpass and highpass filters so we know to count the Q value when it is
+ // set. And explicitly set the value to itself so the histograms know the
+ // initial value.
if (type == "lowpass") {
setType(BiquadProcessor::LowPass);

Powered by Google App Engine
This is Rietveld 408576698