| Index: third_party/WebKit/Source/modules/webaudio/DynamicsCompressorNode.cpp
 | 
| diff --git a/third_party/WebKit/Source/modules/webaudio/DynamicsCompressorNode.cpp b/third_party/WebKit/Source/modules/webaudio/DynamicsCompressorNode.cpp
 | 
| index f13f67ca88fd38dbb1dcab959d4293832989098f..417a55ec582f53f9c2b114332188f61c23ece06e 100644
 | 
| --- a/third_party/WebKit/Source/modules/webaudio/DynamicsCompressorNode.cpp
 | 
| +++ b/third_party/WebKit/Source/modules/webaudio/DynamicsCompressorNode.cpp
 | 
| @@ -81,7 +81,7 @@ DynamicsCompressorHandler::~DynamicsCompressorHandler()
 | 
|  void DynamicsCompressorHandler::process(size_t framesToProcess)
 | 
|  {
 | 
|      AudioBus* outputBus = output(0).bus();
 | 
| -    ASSERT(outputBus);
 | 
| +    DCHECK(outputBus);
 | 
|  
 | 
|      float threshold = m_threshold->value();
 | 
|      float knee = m_knee->value();
 | 
| 
 |