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

Unified Diff: talk/app/webrtc/peerconnection.cc

Issue 1207563002: Add flakiness check if there is no received packets in a certain period. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Address comments except for naming. Created 5 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 side-by-side diff with in-line comments
Download patch
Index: talk/app/webrtc/peerconnection.cc
diff --git a/talk/app/webrtc/peerconnection.cc b/talk/app/webrtc/peerconnection.cc
index 4c54d6f5feb62c2b4f1b5f25da091ac30d8e4439..5ec9d132dac1a921df4c32784b4d79f2b34abcd3 100644
--- a/talk/app/webrtc/peerconnection.cc
+++ b/talk/app/webrtc/peerconnection.cc
@@ -886,6 +886,11 @@ void PeerConnection::OnIceComplete() {
observer_->OnIceComplete();
}
+void PeerConnection::OnIceFlakinessChange(bool flaky) {
+ ASSERT(signaling_thread()->IsCurrent());
+ observer_->OnIceFlakinessChange(flaky);
+}
+
void PeerConnection::ChangeSignalingState(
PeerConnectionInterface::SignalingState signaling_state) {
signaling_state_ = signaling_state;

Powered by Google App Engine
This is Rietveld 408576698