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

Unified Diff: talk/examples/android/res/xml/preferences.xml

Issue 1235563006: Move talk/examples/* to webrtc/examples. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 201508051337 Created 5 years, 4 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: talk/examples/android/res/xml/preferences.xml
diff --git a/talk/examples/android/res/xml/preferences.xml b/talk/examples/android/res/xml/preferences.xml
deleted file mode 100644
index 73d8d5e254dfeadba1cba8b516b57dc532316469..0000000000000000000000000000000000000000
--- a/talk/examples/android/res/xml/preferences.xml
+++ /dev/null
@@ -1,117 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
- <PreferenceCategory
- android:key="@string/pref_videosettings_key"
- android:title="@string/pref_videosettings_title">
-
- <CheckBoxPreference
- android:key="@string/pref_videocall_key"
- android:title="@string/pref_videocall_title"
- android:dialogTitle="@string/pref_videocall_dlg"
- android:defaultValue="@string/pref_videocall_default" />
-
- <ListPreference
- android:key="@string/pref_resolution_key"
- android:title="@string/pref_resolution_title"
- android:defaultValue="@string/pref_resolution_default"
- android:dialogTitle="@string/pref_resolution_dlg"
- android:entries="@array/videoResolutions"
- android:entryValues="@array/videoResolutionsValues" />
-
- <ListPreference
- android:key="@string/pref_fps_key"
- android:title="@string/pref_fps_title"
- android:defaultValue="@string/pref_fps_default"
- android:dialogTitle="@string/pref_fps_dlg"
- android:entries="@array/cameraFps"
- android:entryValues="@array/cameraFps" />
-
- <ListPreference
- android:key="@string/pref_startvideobitrate_key"
- android:title="@string/pref_startvideobitrate_title"
- android:defaultValue="@string/pref_startvideobitrate_default"
- android:dialogTitle="@string/pref_startvideobitrate_dlg"
- android:entries="@array/startBitrate"
- android:entryValues="@array/startBitrate" />
-
- <EditTextPreference
- android:key="@string/pref_startvideobitratevalue_key"
- android:title="@string/pref_startvideobitratevalue_title"
- android:inputType="number"
- android:defaultValue="@string/pref_startvideobitratevalue_default"
- android:dialogTitle="@string/pref_startvideobitratevalue_dlg" />
-
- <ListPreference
- android:key="@string/pref_videocodec_key"
- android:title="@string/pref_videocodec_title"
- android:defaultValue="@string/pref_videocodec_default"
- android:dialogTitle="@string/pref_videocodec_dlg"
- android:entries="@array/videoCodecs"
- android:entryValues="@array/videoCodecs" />
-
- <CheckBoxPreference
- android:key="@string/pref_hwcodec_key"
- android:title="@string/pref_hwcodec_title"
- android:dialogTitle="@string/pref_hwcodec_dlg"
- android:defaultValue="@string/pref_hwcodec_default" />
- </PreferenceCategory>
-
- <PreferenceCategory
- android:key="@string/pref_audiosettings_key"
- android:title="@string/pref_audiosettings_title">
-
- <ListPreference
- android:key="@string/pref_startaudiobitrate_key"
- android:title="@string/pref_startaudiobitrate_title"
- android:defaultValue="@string/pref_startaudiobitrate_default"
- android:dialogTitle="@string/pref_startaudiobitrate_dlg"
- android:entries="@array/startBitrate"
- android:entryValues="@array/startBitrate" />
-
- <EditTextPreference
- android:key="@string/pref_startaudiobitratevalue_key"
- android:title="@string/pref_startaudiobitratevalue_title"
- android:inputType="number"
- android:defaultValue="@string/pref_startaudiobitratevalue_default"
- android:dialogTitle="@string/pref_startaudiobitratevalue_dlg" />
-
- <ListPreference
- android:key="@string/pref_audiocodec_key"
- android:title="@string/pref_audiocodec_title"
- android:defaultValue="@string/pref_audiocodec_default"
- android:dialogTitle="@string/pref_audiocodec_dlg"
- android:entries="@array/audioCodecs"
- android:entryValues="@array/audioCodecs" />
-
- <CheckBoxPreference
- android:key="@string/pref_noaudioprocessing_key"
- android:title="@string/pref_noaudioprocessing_title"
- android:dialogTitle="@string/pref_noaudioprocessing_dlg"
- android:defaultValue="@string/pref_noaudioprocessing_default" />
- </PreferenceCategory>
-
- <PreferenceCategory
- android:key="@string/pref_miscsettings_key"
- android:title="@string/pref_miscsettings_title">
-
- <CheckBoxPreference
- android:key="@string/pref_cpu_usage_detection_key"
- android:title="@string/pref_cpu_usage_detection_title"
- android:dialogTitle="@string/pref_cpu_usage_detection_dlg"
- android:defaultValue="@string/pref_cpu_usage_detection_default" />
-
- <EditTextPreference
- android:key="@string/pref_room_server_url_key"
- android:title="@string/pref_room_server_url_title"
- android:inputType="text"
- android:defaultValue="@string/pref_room_server_url_default"
- android:dialogTitle="@string/pref_room_server_url_dlg" />
-
- <CheckBoxPreference
- android:key="@string/pref_displayhud_key"
- android:title="@string/pref_displayhud_title"
- android:dialogTitle="@string/pref_displayhud_dlg"
- android:defaultValue="@string/pref_displayhud_default" />
- </PreferenceCategory>
-
-</PreferenceScreen>
« no previous file with comments | « talk/examples/android/res/values/strings.xml ('k') | talk/examples/android/src/org/appspot/apprtc/AppRTCAudioManager.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698