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

Unified Diff: third_party/WebKit/Source/platform/exported/WebRTCStatsResponse.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/WebRTCStatsResponse.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebRTCStatsResponse.cpp b/third_party/WebKit/Source/platform/exported/WebRTCStatsResponse.cpp
index 58ede93d71240ca08c2ea0437c1d00b749fd30cd..b7aab276f475dba46cdb095163354715f8f9118e 100644
--- a/third_party/WebKit/Source/platform/exported/WebRTCStatsResponse.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebRTCStatsResponse.cpp
@@ -45,7 +45,7 @@ WebRTCStatsResponse::operator RTCStatsResponseBase*() const {
}
void WebRTCStatsResponse::AddStats(const WebRTCLegacyStats& stats) {
- ASSERT(!private_.IsNull());
+ DCHECK(!private_.IsNull());
private_->AddStats(stats);
}

Powered by Google App Engine
This is Rietveld 408576698