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

Unified Diff: Source/modules/webaudio/DefaultAudioDestinationNode.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/DefaultAudioDestinationNode.h ('k') | Source/modules/webaudio/DelayDSPKernel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/DefaultAudioDestinationNode.cpp
diff --git a/Source/modules/webaudio/DefaultAudioDestinationNode.cpp b/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
index 615d1007ff08e805f432491df10c3208457b0daf..ce6a45d6d28c7cfb53f98fa41c023f6fa583a3a3 100644
--- a/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
+++ b/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
@@ -36,7 +36,7 @@
const unsigned EnabledInputChannels = 2;
namespace WebCore {
-
+
DefaultAudioDestinationNode::DefaultAudioDestinationNode(AudioContext* context)
: AudioDestinationNode(context, AudioDestination::hardwareSampleRate())
, m_numberOfInputChannels(0)
@@ -54,7 +54,7 @@ DefaultAudioDestinationNode::~DefaultAudioDestinationNode()
void DefaultAudioDestinationNode::initialize()
{
- ASSERT(isMainThread());
+ ASSERT(isMainThread());
if (isInitialized())
return;
@@ -64,7 +64,7 @@ void DefaultAudioDestinationNode::initialize()
void DefaultAudioDestinationNode::uninitialize()
{
- ASSERT(isMainThread());
+ ASSERT(isMainThread());
if (!isInitialized())
return;
@@ -78,7 +78,7 @@ void DefaultAudioDestinationNode::createDestination()
{
float hardwareSampleRate = AudioDestination::hardwareSampleRate();
LOG(WebAudio, ">>>> hardwareSampleRate = %f\n", hardwareSampleRate);
-
+
m_destination = AudioDestination::create(*this, m_inputDeviceId, m_numberOfInputChannels, channelCount(), hardwareSampleRate);
}
« no previous file with comments | « Source/modules/webaudio/DefaultAudioDestinationNode.h ('k') | Source/modules/webaudio/DelayDSPKernel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698