| Index: third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.cpp | 
| diff --git a/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.cpp b/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.cpp | 
| index 0b6d7157376bfc4e68ad7b37dc4f3216448d5de8..1034884dcb1fbf4fb78ccaf0795a3913d6a26994 100644 | 
| --- a/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.cpp | 
| +++ b/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.cpp | 
| @@ -52,14 +52,14 @@ PassRefPtr<ChannelSplitterHandler> ChannelSplitterHandler::create(AudioNode& nod | 
| void ChannelSplitterHandler::process(size_t framesToProcess) | 
| { | 
| AudioBus* source = input(0).bus(); | 
| -    ASSERT(source); | 
| +    DCHECK(source); | 
| ASSERT_UNUSED(framesToProcess, framesToProcess == source->length()); | 
|  | 
| unsigned numberOfSourceChannels = source->numberOfChannels(); | 
|  | 
| for (unsigned i = 0; i < numberOfOutputs(); ++i) { | 
| AudioBus* destination = output(i).bus(); | 
| -        ASSERT(destination); | 
| +        DCHECK(destination); | 
|  | 
| if (i < numberOfSourceChannels) { | 
| // Split the channel out if it exists in the source. | 
|  |