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

Unified Diff: third_party/WebKit/Source/platform/audio/AudioDestination.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/AudioDestination.h
diff --git a/third_party/WebKit/Source/platform/audio/AudioDestination.h b/third_party/WebKit/Source/platform/audio/AudioDestination.h
index 74b821e03adfaddad5389db93edbb9a10f24ac9e..dda3527f57476e3697025958418f64c07573959d 100644
--- a/third_party/WebKit/Source/platform/audio/AudioDestination.h
+++ b/third_party/WebKit/Source/platform/audio/AudioDestination.h
@@ -63,7 +63,8 @@ class PLATFORM_EXPORT AudioDestination : public WebAudioDevice::RenderCallback,
~AudioDestination() override;
// Pass in (numberOfInputChannels > 0) if live/local audio input is desired.
- // Port-specific device identification information for live/local input streams can be passed in the inputDeviceId.
+ // Port-specific device identification information for live/local input
+ // streams can be passed in the inputDeviceId.
static std::unique_ptr<AudioDestination> create(
AudioIOCallback&,
const String& inputDeviceId,
@@ -88,11 +89,11 @@ class PLATFORM_EXPORT AudioDestination : public WebAudioDevice::RenderCallback,
static float hardwareSampleRate();
- // maxChannelCount() returns the total number of output channels of the audio hardware.
- // A value of 0 indicates that the number of channels cannot be configured and
- // that only stereo (2-channel) destinations can be created.
- // The numberOfOutputChannels parameter of AudioDestination::create() is allowed to
- // be a value: 1 <= numberOfOutputChannels <= maxChannelCount(),
+ // maxChannelCount() returns the total number of output channels of the audio
+ // hardware. A value of 0 indicates that the number of channels cannot be
+ // configured and that only stereo (2-channel) destinations can be created.
+ // The numberOfOutputChannels parameter of AudioDestination::create() is
+ // allowed to be a value: 1 <= numberOfOutputChannels <= maxChannelCount(),
// or if maxChannelCount() equals 0, then numberOfOutputChannels must be 2.
static unsigned long maxChannelCount();

Powered by Google App Engine
This is Rietveld 408576698