| 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;
 | 
|  
 | 
| 
 |