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

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

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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
« no previous file with comments | « Source/modules/webaudio/BiquadFilterNode.h ('k') | Source/modules/webaudio/BiquadFilterNode.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/BiquadFilterNode.cpp
diff --git a/Source/modules/webaudio/BiquadFilterNode.cpp b/Source/modules/webaudio/BiquadFilterNode.cpp
index e45638a70f72b163a0b10785b80cb6db4d5a3b18..1aa8f4a910ac7cea93628965724c5771068fdc3a 100644
--- a/Source/modules/webaudio/BiquadFilterNode.cpp
+++ b/Source/modules/webaudio/BiquadFilterNode.cpp
@@ -90,7 +90,7 @@ bool BiquadFilterNode::setType(unsigned type)
{
if (type > BiquadProcessor::Allpass)
return false;
-
+
biquadProcessor()->setType(static_cast<BiquadProcessor::FilterType>(type));
return true;
}
@@ -101,7 +101,7 @@ void BiquadFilterNode::getFrequencyResponse(const Float32Array* frequencyHz,
{
if (!frequencyHz || !magResponse || !phaseResponse)
return;
-
+
int n = std::min(frequencyHz->length(),
std::min(magResponse->length(), phaseResponse->length()));
« no previous file with comments | « Source/modules/webaudio/BiquadFilterNode.h ('k') | Source/modules/webaudio/BiquadFilterNode.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698