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

Unified Diff: webrtc/examples/android/media_demo/res/layout/audiomenu.xml

Issue 1439593002: Remove webrtc/examples/android/media_demo. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: remove empty line Created 5 years, 1 month 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/android/media_demo/res/layout/audiomenu.xml
diff --git a/webrtc/examples/android/media_demo/res/layout/audiomenu.xml b/webrtc/examples/android/media_demo/res/layout/audiomenu.xml
deleted file mode 100644
index f35547062a851a519731110c22839c92c419632f..0000000000000000000000000000000000000000
--- a/webrtc/examples/android/media_demo/res/layout/audiomenu.xml
+++ /dev/null
@@ -1,80 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical">
- <TextView android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textStyle="bold"
- android:textSize="24dip"
- android:text="Audio Settings">
- </TextView>
- <TextView android:layout_height="wrap_content"
- android:layout_gravity="bottom"
- android:layout_width="wrap_content"
- android:text="@string/codecType">
- </TextView>
- <Spinner android:id="@+id/spAudioCodecType"
- android:layout_height="wrap_content"
- android:layout_width="fill_parent">
- </Spinner>
- <LinearLayout android:layout_height="wrap_content"
- android:layout_width="fill_parent">
- <TextView android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/aTxPort">
- </TextView>
- <EditText android:id="@+id/etATxPort"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:imeOptions="actionDone"
- android:inputType="number">
- </EditText>
- <TextView android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/aRxPort">
- </TextView>
- <EditText android:id="@+id/etARxPort"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:imeOptions="actionDone"
- android:inputType="number">
- </EditText>
- </LinearLayout>
- <LinearLayout android:layout_height="wrap_content"
- android:layout_width="fill_parent">
- <CheckBox android:id="@+id/cbAecm"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/aecm">
- </CheckBox>
- <CheckBox android:id="@+id/cbNoiseSuppression"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/noiseSuppression">
- </CheckBox>
- <CheckBox android:id="@+id/cbAutoGainControl"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/autoGainControl">
- </CheckBox>
- </LinearLayout>
- <LinearLayout android:layout_height="wrap_content"
- android:layout_width="fill_parent">
- <CheckBox android:id="@+id/cbSpeaker"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/speaker">
- </CheckBox>
- <CheckBox android:id="@+id/cbDebugRecording"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/debugRecording">
- </CheckBox>
- <CheckBox android:id="@+id/cbAudioRTPDump"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/rtpDump">
- </CheckBox>
- </LinearLayout>
-</LinearLayout>

Powered by Google App Engine
This is Rietveld 408576698