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

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

Issue 2871393002: AppRTCMobile support to turn off the WebRTC AGC and HPF (Closed)
Patch Set: Removed coded that did not belong to this CL Created 3 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 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 android:key="@string/pref_disable_built_in_ns_key" 145 android:key="@string/pref_disable_built_in_ns_key"
146 android:title="@string/pref_disable_built_in_ns_title" 146 android:title="@string/pref_disable_built_in_ns_title"
147 android:dialogTitle="@string/pref_disable_built_in_ns_dlg" 147 android:dialogTitle="@string/pref_disable_built_in_ns_dlg"
148 android:defaultValue="@string/pref_disable_built_in_ns_default" /> 148 android:defaultValue="@string/pref_disable_built_in_ns_default" />
149 149
150 <CheckBoxPreference 150 <CheckBoxPreference
151 android:key="@string/pref_enable_level_control_key" 151 android:key="@string/pref_enable_level_control_key"
152 android:title="@string/pref_enable_level_control_title" 152 android:title="@string/pref_enable_level_control_title"
153 android:defaultValue="@string/pref_enable_level_control_default" /> 153 android:defaultValue="@string/pref_enable_level_control_default" />
154 154
155 <CheckBoxPreference
156 android:key="@string/pref_disable_webrtc_agc_and_hpf_key"
157 android:title="@string/pref_disable_webrtc_agc_and_hpf_title"
158 android:defaultValue="@string/pref_disable_webrtc_agc_default" />
159
155 <ListPreference 160 <ListPreference
156 android:key="@string/pref_speakerphone_key" 161 android:key="@string/pref_speakerphone_key"
157 android:title="@string/pref_speakerphone_title" 162 android:title="@string/pref_speakerphone_title"
158 android:defaultValue="@string/pref_speakerphone_default" 163 android:defaultValue="@string/pref_speakerphone_default"
159 android:dialogTitle="@string/pref_speakerphone_dlg" 164 android:dialogTitle="@string/pref_speakerphone_dlg"
160 android:entries="@array/speakerphone" 165 android:entries="@array/speakerphone"
161 android:entryValues="@array/speakerphoneValues" /> 166 android:entryValues="@array/speakerphoneValues" />
162 </PreferenceCategory> 167 </PreferenceCategory>
163 168
164 <PreferenceCategory 169 <PreferenceCategory
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 android:defaultValue="@string/pref_displayhud_default" /> 232 android:defaultValue="@string/pref_displayhud_default" />
228 233
229 <CheckBoxPreference 234 <CheckBoxPreference
230 android:key="@string/pref_tracing_key" 235 android:key="@string/pref_tracing_key"
231 android:title="@string/pref_tracing_title" 236 android:title="@string/pref_tracing_title"
232 android:dialogTitle="@string/pref_tracing_dlg" 237 android:dialogTitle="@string/pref_tracing_dlg"
233 android:defaultValue="@string/pref_tracing_default" /> 238 android:defaultValue="@string/pref_tracing_default" />
234 </PreferenceCategory> 239 </PreferenceCategory>
235 240
236 </PreferenceScreen> 241 </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