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

Unified Diff: webrtc/api/webrtcsession.cc

Issue 2005573002: Move the ICE state transition ASSERTS to a lower level. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixing patch conflict. Created 4 years, 7 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
« no previous file with comments | « no previous file | webrtc/p2p/base/p2ptransportchannel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/webrtcsession.cc
diff --git a/webrtc/api/webrtcsession.cc b/webrtc/api/webrtcsession.cc
index 80352cf83246f3ff5f42a4bfa4be64f496a5e153..24eb5936386b6918c4026e4d44e9422d780321c4 100644
--- a/webrtc/api/webrtcsession.cc
+++ b/webrtc/api/webrtcsession.cc
@@ -1466,46 +1466,10 @@ void WebRtcSession::SetIceConnectionState(
return;
}
- // ASSERT that the requested transition is allowed. Note that
- // WebRtcSession does not implement "kIceConnectionClosed" (that is handled
- // within PeerConnection). This switch statement should compile away when
- // ASSERTs are disabled.
LOG(LS_INFO) << "Changing IceConnectionState " << ice_connection_state_
<< " => " << state;
- switch (ice_connection_state_) {
- case PeerConnectionInterface::kIceConnectionNew:
- ASSERT(state == PeerConnectionInterface::kIceConnectionChecking);
- break;
- case PeerConnectionInterface::kIceConnectionChecking:
- ASSERT(state == PeerConnectionInterface::kIceConnectionFailed ||
- state == PeerConnectionInterface::kIceConnectionConnected);
- break;
- case PeerConnectionInterface::kIceConnectionConnected:
- ASSERT(state == PeerConnectionInterface::kIceConnectionDisconnected ||
- state == PeerConnectionInterface::kIceConnectionChecking ||
- state == PeerConnectionInterface::kIceConnectionCompleted);
- break;
- case PeerConnectionInterface::kIceConnectionCompleted:
- ASSERT(state == PeerConnectionInterface::kIceConnectionConnected ||
- state == PeerConnectionInterface::kIceConnectionDisconnected);
- break;
- case PeerConnectionInterface::kIceConnectionFailed:
- ASSERT(state == PeerConnectionInterface::kIceConnectionNew);
- break;
- case PeerConnectionInterface::kIceConnectionDisconnected:
- ASSERT(state == PeerConnectionInterface::kIceConnectionChecking ||
- state == PeerConnectionInterface::kIceConnectionConnected ||
- state == PeerConnectionInterface::kIceConnectionCompleted ||
- state == PeerConnectionInterface::kIceConnectionFailed);
- break;
- case PeerConnectionInterface::kIceConnectionClosed:
- ASSERT(false);
- break;
- default:
- ASSERT(false);
- break;
- }
-
+ RTC_DCHECK(ice_connection_state_ !=
+ PeerConnectionInterface::kIceConnectionClosed);
ice_connection_state_ = state;
if (ice_observer_) {
ice_observer_->OnIceConnectionChange(ice_connection_state_);
« no previous file with comments | « no previous file | webrtc/p2p/base/p2ptransportchannel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698