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

Side by Side 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, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/p2p/base/p2ptransportchannel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 1448 matching lines...) Expand 10 before | Expand all | Expand 10 after
1459 WebRtcSession::certificate_for_testing() { 1459 WebRtcSession::certificate_for_testing() {
1460 return transport_controller_->certificate_for_testing(); 1460 return transport_controller_->certificate_for_testing();
1461 } 1461 }
1462 1462
1463 void WebRtcSession::SetIceConnectionState( 1463 void WebRtcSession::SetIceConnectionState(
1464 PeerConnectionInterface::IceConnectionState state) { 1464 PeerConnectionInterface::IceConnectionState state) {
1465 if (ice_connection_state_ == state) { 1465 if (ice_connection_state_ == state) {
1466 return; 1466 return;
1467 } 1467 }
1468 1468
1469 // ASSERT that the requested transition is allowed. Note that
1470 // WebRtcSession does not implement "kIceConnectionClosed" (that is handled
1471 // within PeerConnection). This switch statement should compile away when
1472 // ASSERTs are disabled.
1473 LOG(LS_INFO) << "Changing IceConnectionState " << ice_connection_state_ 1469 LOG(LS_INFO) << "Changing IceConnectionState " << ice_connection_state_
1474 << " => " << state; 1470 << " => " << state;
1475 switch (ice_connection_state_) { 1471 RTC_DCHECK(ice_connection_state_ !=
1476 case PeerConnectionInterface::kIceConnectionNew: 1472 PeerConnectionInterface::kIceConnectionClosed);
1477 ASSERT(state == PeerConnectionInterface::kIceConnectionChecking);
1478 break;
1479 case PeerConnectionInterface::kIceConnectionChecking:
1480 ASSERT(state == PeerConnectionInterface::kIceConnectionFailed ||
1481 state == PeerConnectionInterface::kIceConnectionConnected);
1482 break;
1483 case PeerConnectionInterface::kIceConnectionConnected:
1484 ASSERT(state == PeerConnectionInterface::kIceConnectionDisconnected ||
1485 state == PeerConnectionInterface::kIceConnectionChecking ||
1486 state == PeerConnectionInterface::kIceConnectionCompleted);
1487 break;
1488 case PeerConnectionInterface::kIceConnectionCompleted:
1489 ASSERT(state == PeerConnectionInterface::kIceConnectionConnected ||
1490 state == PeerConnectionInterface::kIceConnectionDisconnected);
1491 break;
1492 case PeerConnectionInterface::kIceConnectionFailed:
1493 ASSERT(state == PeerConnectionInterface::kIceConnectionNew);
1494 break;
1495 case PeerConnectionInterface::kIceConnectionDisconnected:
1496 ASSERT(state == PeerConnectionInterface::kIceConnectionChecking ||
1497 state == PeerConnectionInterface::kIceConnectionConnected ||
1498 state == PeerConnectionInterface::kIceConnectionCompleted ||
1499 state == PeerConnectionInterface::kIceConnectionFailed);
1500 break;
1501 case PeerConnectionInterface::kIceConnectionClosed:
1502 ASSERT(false);
1503 break;
1504 default:
1505 ASSERT(false);
1506 break;
1507 }
1508
1509 ice_connection_state_ = state; 1473 ice_connection_state_ = state;
1510 if (ice_observer_) { 1474 if (ice_observer_) {
1511 ice_observer_->OnIceConnectionChange(ice_connection_state_); 1475 ice_observer_->OnIceConnectionChange(ice_connection_state_);
1512 } 1476 }
1513 } 1477 }
1514 1478
1515 void WebRtcSession::OnTransportControllerConnectionState( 1479 void WebRtcSession::OnTransportControllerConnectionState(
1516 cricket::IceConnectionState state) { 1480 cricket::IceConnectionState state) {
1517 switch (state) { 1481 switch (state) {
1518 case cricket::kIceConnectionConnecting: 1482 case cricket::kIceConnectionConnecting:
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
2192 ssl_cipher_suite); 2156 ssl_cipher_suite);
2193 } 2157 }
2194 } 2158 }
2195 2159
2196 void WebRtcSession::OnSentPacket_w(const rtc::SentPacket& sent_packet) { 2160 void WebRtcSession::OnSentPacket_w(const rtc::SentPacket& sent_packet) {
2197 RTC_DCHECK(worker_thread()->IsCurrent()); 2161 RTC_DCHECK(worker_thread()->IsCurrent());
2198 media_controller_->call_w()->OnSentPacket(sent_packet); 2162 media_controller_->call_w()->OnSentPacket(sent_packet);
2199 } 2163 }
2200 2164
2201 } // namespace webrtc 2165 } // namespace webrtc
OLDNEW
« 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