| Index: third_party/WebKit/Source/platform/audio/MultiChannelResampler.cpp
|
| diff --git a/third_party/WebKit/Source/platform/audio/MultiChannelResampler.cpp b/third_party/WebKit/Source/platform/audio/MultiChannelResampler.cpp
|
| index 9c6379b5a6bd786cd3ae6e9c838752d24840fda4..9e3e3bede0fa3e57904c930c4b8799141af54a6b 100644
|
| --- a/third_party/WebKit/Source/platform/audio/MultiChannelResampler.cpp
|
| +++ b/third_party/WebKit/Source/platform/audio/MultiChannelResampler.cpp
|
| @@ -51,7 +51,7 @@ class ChannelProvider final : public AudioSourceProvider {
|
| // data.
|
| void provideInput(AudioBus* bus, size_t framesToProcess) override {
|
| bool isBusGood = bus && bus->numberOfChannels() == 1;
|
| - ASSERT(isBusGood);
|
| + DCHECK(isBusGood);
|
| if (!isBusGood)
|
| return;
|
|
|
| @@ -69,7 +69,7 @@ class ChannelProvider final : public AudioSourceProvider {
|
| // case, but let's just make sure.
|
| bool isGood =
|
| m_multiChannelBus.get() && framesToProcess == m_framesToProcess;
|
| - ASSERT(isGood);
|
| + DCHECK(isGood);
|
| if (!isGood)
|
| return;
|
|
|
|
|