Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(604)

Unified Diff: third_party/WebKit/Source/platform/exported/WebRTCOfferOptions.cpp

Issue 2811463002: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in platform/exported (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}

Powered by Google App Engine
This is Rietveld 408576698