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

Side by Side Diff: webrtc/examples/androidapp/res/xml/preferences.xml

Issue 2184653002: Add an option to disable built-in AGC/NS to AppRTC Demo. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> 2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
3 <PreferenceCategory 3 <PreferenceCategory
4 android:key="@string/pref_videosettings_key" 4 android:key="@string/pref_videosettings_key"
5 android:title="@string/pref_videosettings_title"> 5 android:title="@string/pref_videosettings_title">
6 6
7 <CheckBoxPreference 7 <CheckBoxPreference
8 android:key="@string/pref_videocall_key" 8 android:key="@string/pref_videocall_key"
9 android:title="@string/pref_videocall_title" 9 android:title="@string/pref_videocall_title"
10 android:dialogTitle="@string/pref_videocall_dlg" 10 android:dialogTitle="@string/pref_videocall_dlg"
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 android:key="@string/pref_opensles_key" 116 android:key="@string/pref_opensles_key"
117 android:title="@string/pref_opensles_title" 117 android:title="@string/pref_opensles_title"
118 android:dialogTitle="@string/pref_opensles_dlg" 118 android:dialogTitle="@string/pref_opensles_dlg"
119 android:defaultValue="@string/pref_opensles_default" /> 119 android:defaultValue="@string/pref_opensles_default" />
120 120
121 <CheckBoxPreference 121 <CheckBoxPreference
122 android:key="@string/pref_disable_built_in_aec_key" 122 android:key="@string/pref_disable_built_in_aec_key"
123 android:title="@string/pref_disable_built_in_aec_title" 123 android:title="@string/pref_disable_built_in_aec_title"
124 android:dialogTitle="@string/pref_disable_built_in_aec_dlg" 124 android:dialogTitle="@string/pref_disable_built_in_aec_dlg"
125 android:defaultValue="@string/pref_disable_built_in_aec_default" /> 125 android:defaultValue="@string/pref_disable_built_in_aec_default" />
126
127 <CheckBoxPreference
128 android:key="@string/pref_disable_built_in_agc_key"
129 android:title="@string/pref_disable_built_in_agc_title"
130 android:dialogTitle="@string/pref_disable_built_in_agc_dlg"
131 android:defaultValue="@string/pref_disable_built_in_agc_default" />
132
133 <CheckBoxPreference
134 android:key="@string/pref_disable_built_in_ns_key"
135 android:title="@string/pref_disable_built_in_ns_title"
136 android:dialogTitle="@string/pref_disable_built_in_ns_dlg"
137 android:defaultValue="@string/pref_disable_built_in_ns_default" />
126 </PreferenceCategory> 138 </PreferenceCategory>
127 139
128 <PreferenceCategory 140 <PreferenceCategory
129 android:key="@string/pref_miscsettings_key" 141 android:key="@string/pref_miscsettings_key"
130 android:title="@string/pref_miscsettings_title"> 142 android:title="@string/pref_miscsettings_title">
131 143
132 <EditTextPreference 144 <EditTextPreference
133 android:key="@string/pref_room_server_url_key" 145 android:key="@string/pref_room_server_url_key"
134 android:title="@string/pref_room_server_url_title" 146 android:title="@string/pref_room_server_url_title"
135 android:inputType="text" 147 android:inputType="text"
136 android:defaultValue="@string/pref_room_server_url_default" 148 android:defaultValue="@string/pref_room_server_url_default"
137 android:dialogTitle="@string/pref_room_server_url_dlg" /> 149 android:dialogTitle="@string/pref_room_server_url_dlg" />
138 150
139 <CheckBoxPreference 151 <CheckBoxPreference
140 android:key="@string/pref_displayhud_key" 152 android:key="@string/pref_displayhud_key"
141 android:title="@string/pref_displayhud_title" 153 android:title="@string/pref_displayhud_title"
142 android:dialogTitle="@string/pref_displayhud_dlg" 154 android:dialogTitle="@string/pref_displayhud_dlg"
143 android:defaultValue="@string/pref_displayhud_default" /> 155 android:defaultValue="@string/pref_displayhud_default" />
144 156
145 <CheckBoxPreference 157 <CheckBoxPreference
146 android:key="@string/pref_tracing_key" 158 android:key="@string/pref_tracing_key"
147 android:title="@string/pref_tracing_title" 159 android:title="@string/pref_tracing_title"
148 android:dialogTitle="@string/pref_tracing_dlg" 160 android:dialogTitle="@string/pref_tracing_dlg"
149 android:defaultValue="@string/pref_tracing_default" /> 161 android:defaultValue="@string/pref_tracing_default" />
150 </PreferenceCategory> 162 </PreferenceCategory>
151 163
152 </PreferenceScreen> 164 </PreferenceScreen>
OLDNEW
« no previous file with comments | « webrtc/examples/androidapp/res/values/strings.xml ('k') | webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698