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

Unified Diff: webrtc/media/engine/fakewebrtcvoiceengine.h

Issue 2623473004: Replace all use of the VERIFY macro. (Closed)
Patch Set: Delete a DCHECK, instead log and return failure. And fix compile error in previous patch set. Created 3 years, 10 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: webrtc/media/engine/fakewebrtcvoiceengine.h
diff --git a/webrtc/media/engine/fakewebrtcvoiceengine.h b/webrtc/media/engine/fakewebrtcvoiceengine.h
index 5f61cf1143fca7672ba049f221d6aa2a26cb72ea..3b992f1e2c0f963410430c135c063825ad8bd8b7 100644
--- a/webrtc/media/engine/fakewebrtcvoiceengine.h
+++ b/webrtc/media/engine/fakewebrtcvoiceengine.h
@@ -332,7 +332,7 @@ class FakeWebRtcVoiceEngine
}
bool GetNetEqFastAccelerate() const {
auto ch = channels_.find(last_channel_);
- RTC_DCHECK(ch != channels_.end());
+ RTC_CHECK(ch != channels_.end());
return ch->second->neteq_fast_accelerate;
}

Powered by Google App Engine
This is Rietveld 408576698