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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioBuffer.cpp

Issue 2389253002: reflow comments in modules/{webaudio,vr} (Closed)
Patch Set: . 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/modules/webaudio/AudioBuffer.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioBuffer.cpp b/third_party/WebKit/Source/modules/webaudio/AudioBuffer.cpp
index 7483167f09448aaeb76166206107e90695b8a14a..1eab6e67412f7b93ee911bec2fa05fd7face72d0 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioBuffer.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/AudioBuffer.cpp
@@ -177,8 +177,8 @@ AudioBuffer::AudioBuffer(unsigned numberOfChannels,
for (unsigned i = 0; i < numberOfChannels; ++i) {
DOMFloat32Array* channelDataArray = createFloat32ArrayOrNull(m_length);
- // If the channel data array could not be created, just return. The caller will need to
- // check that the desired number of channels were created.
+ // If the channel data array could not be created, just return. The caller
+ // will need to check that the desired number of channels were created.
if (!channelDataArray)
return;
@@ -194,8 +194,8 @@ AudioBuffer::AudioBuffer(AudioBus* bus)
m_channels.reserveCapacity(numberOfChannels);
for (unsigned i = 0; i < numberOfChannels; ++i) {
DOMFloat32Array* channelDataArray = createFloat32ArrayOrNull(m_length);
- // If the channel data array could not be created, just return. The caller will need to
- // check that the desired number of channels were created.
+ // If the channel data array could not be created, just return. The caller
+ // will need to check that the desired number of channels were created.
if (!channelDataArray)
return;

Powered by Google App Engine
This is Rietveld 408576698