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

Unified Diff: webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java

Issue 2377003002: Format all Java in WebRTC. (Closed)
Patch Set: Rebase. Created 4 years, 3 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/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 0b16db8c5e5fa0e02bf0c8017bfe37c0bebe53c2..72a449bb440e812671e3f6e29d7fbf08f8102165 100644
--- a/webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java
+++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/AppRTCClient.java
@@ -20,7 +20,6 @@ import java.util.List;
* AppRTCClient is the interface representing an AppRTC client.
*/
public interface AppRTCClient {
-
/**
* Struct holding the connection parameters of an AppRTC room.
*/
@@ -28,8 +27,7 @@ public interface AppRTCClient {
public final String roomUrl;
public final String roomId;
public final boolean loopback;
- public RoomConnectionParameters(
- String roomUrl, String roomId, boolean loopback) {
+ public RoomConnectionParameters(String roomUrl, String roomId, boolean loopback) {
this.roomUrl = roomUrl;
this.roomId = roomId;
this.loopback = loopback;
@@ -80,11 +78,9 @@ public interface AppRTCClient {
public final SessionDescription offerSdp;
public final List<IceCandidate> iceCandidates;
- public SignalingParameters(
- List<PeerConnection.IceServer> iceServers,
- boolean initiator, String clientId,
- String wssUrl, String wssPostUrl,
- SessionDescription offerSdp, List<IceCandidate> iceCandidates) {
+ public SignalingParameters(List<PeerConnection.IceServer> iceServers, boolean initiator,
+ String clientId, String wssUrl, String wssPostUrl, SessionDescription offerSdp,
+ List<IceCandidate> iceCandidates) {
this.iceServers = iceServers;
this.initiator = initiator;
this.clientId = clientId;

Powered by Google App Engine
This is Rietveld 408576698