Index: talk/app/webrtc/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java |
diff --git a/talk/app/webrtc/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java b/talk/app/webrtc/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java |
index 162fad1c3b37991bbb2d654dc3a98e22da679435..33b8c95986e673fcc82b5b59cdc42015e53ddb45 100644 |
--- a/talk/app/webrtc/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java |
+++ b/talk/app/webrtc/androidtests/src/org/webrtc/VideoCapturerAndroidTest.java |
@@ -276,8 +276,7 @@ public class VideoCapturerAndroidTest extends ActivityTestCase { |
FakeCapturerObserver observer = new FakeCapturerObserver(); |
String deviceName = CameraEnumerationAndroid.getDeviceName(0); |
- ArrayList<CaptureFormat> formats = |
- CameraEnumerationAndroid.getSupportedFormats(0); |
+ List<CaptureFormat> formats = CameraEnumerationAndroid.getSupportedFormats(0); |
VideoCapturerAndroid capturer = |
VideoCapturerAndroid.create(deviceName, null); |
@@ -301,8 +300,7 @@ public class VideoCapturerAndroidTest extends ActivityTestCase { |
FakeCapturerObserver observer = new FakeCapturerObserver(); |
String deviceName = CameraEnumerationAndroid.getDeviceName(0); |
- ArrayList<CaptureFormat> formats = |
- CameraEnumerationAndroid.getSupportedFormats(0); |
+ List<CaptureFormat> formats = CameraEnumerationAndroid.getSupportedFormats(0); |
VideoCapturerAndroid capturer = |
VideoCapturerAndroid.create(deviceName, null); |