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

Unified Diff: third_party/WebKit/Source/platform/audio/AudioProcessor.h

Issue 2384073002: reflow comments in platform/audio (Closed)
Patch Set: comments (heh!) 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/platform/audio/AudioProcessor.h
diff --git a/third_party/WebKit/Source/platform/audio/AudioProcessor.h b/third_party/WebKit/Source/platform/audio/AudioProcessor.h
index 4b08914dcdd55d1fd26919e51dc94de5b49acefc..c24bc64ff476f129397924068fd929a1573985cf 100644
--- a/third_party/WebKit/Source/platform/audio/AudioProcessor.h
+++ b/third_party/WebKit/Source/platform/audio/AudioProcessor.h
@@ -38,9 +38,11 @@ namespace blink {
class AudioBus;
-// AudioProcessor is an abstract base class representing an audio signal processing object with a single input and a single output,
-// where the number of input channels equals the number of output channels. It can be used as one part of a complex DSP algorithm,
-// or as the processor for a basic (one input - one output) AudioNode.
+// AudioProcessor is an abstract base class representing an audio signal
+// processing object with a single input and a single output, where the number
+// of input channels equals the number of output channels. It can be used as
+// one part of a complex DSP algorithm, or as the processor for a basic (one
+// input - one output) AudioNode.
class PLATFORM_EXPORT AudioProcessor {
USING_FAST_MALLOC(AudioProcessor);
@@ -57,7 +59,8 @@ class PLATFORM_EXPORT AudioProcessor {
virtual void initialize() = 0;
virtual void uninitialize() = 0;
- // Processes the source to destination bus. The number of channels must match in source and destination.
+ // Processes the source to destination bus. The number of channels must match
+ // in source and destination.
virtual void process(const AudioBus* source,
AudioBus* destination,
size_t framesToProcess) = 0;
« no previous file with comments | « third_party/WebKit/Source/platform/audio/AudioIOCallback.h ('k') | third_party/WebKit/Source/platform/audio/AudioPullFIFO.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698