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

Unified Diff: talk/app/webrtc/java/src/org/webrtc/PeerConnection.java

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: First-cut 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/java/src/org/webrtc/PeerConnection.java
diff --git a/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java b/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java
index 8da2c45108eef70ea324a20e93476a19cdf98b6c..d8a0ec842d00646852c48eaa809ecf0cfebc86b1 100644
--- a/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java
+++ b/talk/app/webrtc/java/src/org/webrtc/PeerConnection.java
@@ -66,6 +66,9 @@ public class PeerConnection {
/** Triggered when the IceConnectionState changes. */
public void onIceConnectionChange(IceConnectionState newState);
+ /** Triggered when the ICE transport becomes flaky or back to normal. */
+ public void onIceFlakinessChange(boolean flaky);
+
/** Triggered when the IceGatheringState changes. */
public void onIceGatheringChange(IceGatheringState newState);

Powered by Google App Engine
This is Rietveld 408576698