Chromium Code Reviews| Index: webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java |
| diff --git a/webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java b/webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java |
| index 72a449bb440e812671e3f6e29d7fbf08f8102165..e88d1a849fdcac0beea6014cc119509c58af6da0 100644 |
| --- a/webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java |
| +++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java |
| @@ -27,10 +27,16 @@ public interface AppRTCClient { |
| public final String roomUrl; |
| public final String roomId; |
| public final boolean loopback; |
| - public RoomConnectionParameters(String roomUrl, String roomId, boolean loopback) { |
| + public final String colliderUrl; |
| + public RoomConnectionParameters( |
| + String roomUrl, String roomId, boolean loopback, String colliderUrl) { |
| this.roomUrl = roomUrl; |
| this.roomId = roomId; |
| this.loopback = loopback; |
| + this.colliderUrl = colliderUrl; |
| + } |
| + public RoomConnectionParameters(String roomUrl, String roomId, boolean loopback) { |
| + this(roomUrl, roomId, loopback, null); |
|
magjed_webrtc
2017/04/20 13:53:30
nit: Add literal comment, i.e. null /* colliderUrl
oprypin_webrtc
2017/04/20 15:46:15
Will do.
|
| } |
| } |