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

Unified Diff: webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java

Issue 1992213002: Replace LooperExecutor with built-in class in Android AppRTC Demo (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 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: webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
diff --git a/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java b/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
index ee3b7c4656a369d46fb7f18b15af276aae85d687..26ad536adf51b4f5edad8e80ba66b09a1b925f47 100644
--- a/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
+++ b/webrtc/examples/androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java
@@ -10,9 +10,6 @@
package org.appspot.apprtc;
-import android.util.Log;
-
-import org.appspot.apprtc.util.RobolectricLooperExecutor;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -56,8 +53,8 @@ public class DirectRTCClientTest {
clientEvents = mock(AppRTCClient.SignalingEvents.class);
serverEvents = mock(AppRTCClient.SignalingEvents.class);
- client = new DirectRTCClient(clientEvents, new RobolectricLooperExecutor());
- server = new DirectRTCClient(serverEvents, new RobolectricLooperExecutor());
+ client = new DirectRTCClient(clientEvents);
+ server = new DirectRTCClient(serverEvents);
}
@Test

Powered by Google App Engine
This is Rietveld 408576698