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

Unified Diff: talk/app/webrtc/java/testcommon/src/org/webrtc/PeerConnectionTest.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: 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/java/testcommon/src/org/webrtc/PeerConnectionTest.java
diff --git a/talk/app/webrtc/java/testcommon/src/org/webrtc/PeerConnectionTest.java b/talk/app/webrtc/java/testcommon/src/org/webrtc/PeerConnectionTest.java
index 224225cdc75252428bddbf1f4af45998bcbb776d..f313fede48411f3a609cdcea34ce46b8cacb7fb0 100644
--- a/talk/app/webrtc/java/testcommon/src/org/webrtc/PeerConnectionTest.java
+++ b/talk/app/webrtc/java/testcommon/src/org/webrtc/PeerConnectionTest.java
@@ -175,6 +175,10 @@ public class PeerConnectionTest {
assertEquals(expectedIceConnectionChanges.removeFirst(), newState);
}
+ @Override
+ public synchronized void onIceFlakinessChange(boolean flaky) {
+ }
+
public synchronized void expectIceGatheringChange(
IceGatheringState newState) {
expectedIceGatheringChanges.add(newState);

Powered by Google App Engine
This is Rietveld 408576698