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

Unified Diff: third_party/WebKit/Source/platform/audio/AudioDSPKernelProcessor.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/AudioDSPKernelProcessor.h
diff --git a/third_party/WebKit/Source/platform/audio/AudioDSPKernelProcessor.h b/third_party/WebKit/Source/platform/audio/AudioDSPKernelProcessor.h
index 4c316cbdcb55e35820534b72e9bac2294b195776..1b79195318ffabab0a6cdb656aec3709657c9216 100644
--- a/third_party/WebKit/Source/platform/audio/AudioDSPKernelProcessor.h
+++ b/third_party/WebKit/Source/platform/audio/AudioDSPKernelProcessor.h
@@ -44,12 +44,14 @@ class AudioDSPKernel;
class AudioProcessor;
// AudioDSPKernelProcessor processes one input -> one output (N channels each)
-// It uses one AudioDSPKernel object per channel to do the processing, thus there is no cross-channel processing.
-// Despite this limitation it turns out to be a very common and useful type of processor.
+// It uses one AudioDSPKernel object per channel to do the processing, thus
+// there is no cross-channel processing. Despite this limitation it turns out
+// to be a very common and useful type of processor.
class PLATFORM_EXPORT AudioDSPKernelProcessor : public AudioProcessor {
public:
- // numberOfChannels may be later changed if object is not yet in an "initialized" state
+ // numberOfChannels may be later changed if object is not yet in an
+ // "initialized" state
AudioDSPKernelProcessor(float sampleRate, unsigned numberOfChannels);
// Subclasses create the appropriate type of processing kernel here.

Powered by Google App Engine
This is Rietveld 408576698