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

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

Issue 2585813002: Espresso test case to control loopback call (Closed)
Patch Set: Merge from master and use of Environment.getExternalStorageDirectory() instead of hardcoded /sdcard… Created 3 years, 11 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/CallActivity.java
diff --git a/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java b/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java
index 276f7528712e548f0ab2c5be3db317e6c9959294..87ee8443a68eb52863650cdc59427e09a4436666 100644
--- a/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java
+++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java
@@ -280,7 +280,7 @@ public class CallActivity extends Activity implements AppRTCClient.SignalingEven
videoHeight = displayMetrics.heightPixels;
}
DataChannelParameters dataChannelParameters = null;
- if (intent.getBooleanExtra(EXTRA_DATA_CHANNEL_ENABLED, true)) {
+ if (intent.getBooleanExtra(EXTRA_DATA_CHANNEL_ENABLED, false)) {
dataChannelParameters = new DataChannelParameters(intent.getBooleanExtra(EXTRA_ORDERED, true),
intent.getIntExtra(EXTRA_MAX_RETRANSMITS_MS, -1),
intent.getIntExtra(EXTRA_MAX_RETRANSMITS, -1), intent.getStringExtra(EXTRA_PROTOCOL),

Powered by Google App Engine
This is Rietveld 408576698