| Index: third_party/WebKit/Source/platform/audio/IIRFilter.cpp
|
| diff --git a/third_party/WebKit/Source/platform/audio/IIRFilter.cpp b/third_party/WebKit/Source/platform/audio/IIRFilter.cpp
|
| index a2c1841514ee03fbe3262f237f2a503674440b93..2dca1b18b83a1cfc8d81434a41922ab8c9b76172 100644
|
| --- a/third_party/WebKit/Source/platform/audio/IIRFilter.cpp
|
| +++ b/third_party/WebKit/Source/platform/audio/IIRFilter.cpp
|
| @@ -60,8 +60,8 @@ void IIRFilter::process(const float* sourceP,
|
| const double* feedback = m_feedback->data();
|
| const double* feedforward = m_feedforward->data();
|
|
|
| - ASSERT(feedback);
|
| - ASSERT(feedforward);
|
| + DCHECK(feedback);
|
| + DCHECK(feedforward);
|
|
|
| // Sanity check to see if the feedback coefficients have been scaled
|
| // appropriately. It must be EXACTLY 1!
|
|
|