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

Unified Diff: third_party/WebKit/Source/platform/exported/WebRTCSessionDescriptionRequest.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/WebRTCSessionDescriptionRequest.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebRTCSessionDescriptionRequest.cpp b/third_party/WebKit/Source/platform/exported/WebRTCSessionDescriptionRequest.cpp
index 285cb772aa3f05fa9c7ae14a330a9f60f1aca9ce..6098cd44c0b16bf0d333b0d6533af99c9d8448d4 100644
--- a/third_party/WebKit/Source/platform/exported/WebRTCSessionDescriptionRequest.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebRTCSessionDescriptionRequest.cpp
@@ -51,13 +51,13 @@ void WebRTCSessionDescriptionRequest::Reset() {
void WebRTCSessionDescriptionRequest::RequestSucceeded(
const WebRTCSessionDescription& session_description) const {
- ASSERT(private_.Get());
+ DCHECK(private_.Get());
private_->RequestSucceeded(session_description);
}
void WebRTCSessionDescriptionRequest::RequestFailed(
const WebString& error) const {
- ASSERT(private_.Get());
+ DCHECK(private_.Get());
private_->RequestFailed(error);
}

Powered by Google App Engine
This is Rietveld 408576698