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

Unified Diff: third_party/WebKit/Source/platform/exported/WebRTCAnswerOptions.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/WebRTCAnswerOptions.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebRTCAnswerOptions.cpp b/third_party/WebKit/Source/platform/exported/WebRTCAnswerOptions.cpp
index c2c747069c382ed8a3fc26df6a0562c5c689b5ce..1812a4c50231361dbda46cb338d488951acd90bd 100644
--- a/third_party/WebKit/Source/platform/exported/WebRTCAnswerOptions.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebRTCAnswerOptions.cpp
@@ -20,7 +20,7 @@ void WebRTCAnswerOptions::Reset() {
}
bool WebRTCAnswerOptions::VoiceActivityDetection() const {
- ASSERT(!private_.IsNull());
+ DCHECK(!private_.IsNull());
return private_->VoiceActivityDetection();
}

Powered by Google App Engine
This is Rietveld 408576698