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

Side by Side Diff: talk/app/webrtc/peerconnection.cc

Issue 1231823002: Make sure we process all pending offer/answer requests before terminating. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Quit() instead of ProcessMessage Created 5 years, 5 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 | « talk/app/webrtc/dtlsidentitystore_unittest.cc ('k') | talk/app/webrtc/webrtcsession.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 * libjingle 2 * libjingle
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 : factory_(factory), 331 : factory_(factory),
332 observer_(NULL), 332 observer_(NULL),
333 uma_observer_(NULL), 333 uma_observer_(NULL),
334 signaling_state_(kStable), 334 signaling_state_(kStable),
335 ice_state_(kIceNew), 335 ice_state_(kIceNew),
336 ice_connection_state_(kIceConnectionNew), 336 ice_connection_state_(kIceConnectionNew),
337 ice_gathering_state_(kIceGatheringNew) { 337 ice_gathering_state_(kIceGatheringNew) {
338 } 338 }
339 339
340 PeerConnection::~PeerConnection() { 340 PeerConnection::~PeerConnection() {
341 ASSERT(signaling_thread()->IsCurrent());
341 if (mediastream_signaling_) 342 if (mediastream_signaling_)
342 mediastream_signaling_->TearDown(); 343 mediastream_signaling_->TearDown();
343 if (stream_handler_container_) 344 if (stream_handler_container_)
344 stream_handler_container_->TearDown(); 345 stream_handler_container_->TearDown();
345 } 346 }
346 347
347 bool PeerConnection::Initialize( 348 bool PeerConnection::Initialize(
348 const PeerConnectionInterface::RTCConfiguration& configuration, 349 const PeerConnectionInterface::RTCConfiguration& configuration,
349 const MediaConstraintsInterface* constraints, 350 const MediaConstraintsInterface* constraints,
350 PortAllocatorFactoryInterface* allocator_factory, 351 PortAllocatorFactoryInterface* allocator_factory,
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 if (ice_gathering_state_ != kIceGatheringComplete) { 896 if (ice_gathering_state_ != kIceGatheringComplete) {
896 ice_gathering_state_ = kIceGatheringComplete; 897 ice_gathering_state_ = kIceGatheringComplete;
897 observer_->OnIceGatheringChange(ice_gathering_state_); 898 observer_->OnIceGatheringChange(ice_gathering_state_);
898 } 899 }
899 } 900 }
900 observer_->OnSignalingChange(signaling_state_); 901 observer_->OnSignalingChange(signaling_state_);
901 observer_->OnStateChange(PeerConnectionObserver::kSignalingState); 902 observer_->OnStateChange(PeerConnectionObserver::kSignalingState);
902 } 903 }
903 904
904 } // namespace webrtc 905 } // namespace webrtc
OLDNEW
« no previous file with comments | « talk/app/webrtc/dtlsidentitystore_unittest.cc ('k') | talk/app/webrtc/webrtcsession.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698