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

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

Issue 1998483003: General cleanup on AppRTC Android Demo codebase (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove unused string that was accidentally added. 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/androidapp/src/org/appspot/apprtc/CallFragment.java
diff --git a/webrtc/examples/androidapp/src/org/appspot/apprtc/CallFragment.java b/webrtc/examples/androidapp/src/org/appspot/apprtc/CallFragment.java
index 6523ffa443074f6f124da0eada037e703055aff4..f9e89d89994d703a246bc7b974e8f00d2f2ca5a5 100644
--- a/webrtc/examples/androidapp/src/org/appspot/apprtc/CallFragment.java
+++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/CallFragment.java
@@ -42,11 +42,11 @@ public class CallFragment extends Fragment {
* Call control interface for container activity.
*/
public interface OnCallEvents {
- public void onCallHangUp();
- public void onCameraSwitch();
- public void onVideoScalingSwitch(ScalingType scalingType);
- public void onCaptureFormatChange(int width, int height, int framerate);
- public boolean onToggleMic();
+ void onCallHangUp();
+ void onCameraSwitch();
+ void onVideoScalingSwitch(ScalingType scalingType);
+ void onCaptureFormatChange(int width, int height, int framerate);
+ boolean onToggleMic();
}
@Override

Powered by Google App Engine
This is Rietveld 408576698