| Index: third_party/WebKit/Source/platform/exported/WebRTCOfferOptions.cpp
|
| diff --git a/third_party/WebKit/Source/platform/exported/WebRTCOfferOptions.cpp b/third_party/WebKit/Source/platform/exported/WebRTCOfferOptions.cpp
|
| index c05fb94ffed1da0999d2383ae090f71380eb4634..a338e4d5f82536f68d562826d4a357621530bfe9 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebRTCOfferOptions.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebRTCOfferOptions.cpp
|
| @@ -29,22 +29,22 @@ void WebRTCOfferOptions::Reset() {
|
| }
|
|
|
| int32_t WebRTCOfferOptions::OfferToReceiveVideo() const {
|
| - ASSERT(!IsNull());
|
| + DCHECK(!IsNull());
|
| return private_->OfferToReceiveVideo();
|
| }
|
|
|
| int32_t WebRTCOfferOptions::OfferToReceiveAudio() const {
|
| - ASSERT(!IsNull());
|
| + DCHECK(!IsNull());
|
| return private_->OfferToReceiveAudio();
|
| }
|
|
|
| bool WebRTCOfferOptions::VoiceActivityDetection() const {
|
| - ASSERT(!IsNull());
|
| + DCHECK(!IsNull());
|
| return private_->VoiceActivityDetection();
|
| }
|
|
|
| bool WebRTCOfferOptions::IceRestart() const {
|
| - ASSERT(!IsNull());
|
| + DCHECK(!IsNull());
|
| return private_->IceRestart();
|
| }
|
|
|
|
|