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

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

Issue 2002093002: Add an option to disable built-in AEC to AppRTC Android Demo (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix comment Created 4 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 android:key="@string/pref_aecdump_key" 105 android:key="@string/pref_aecdump_key"
106 android:title="@string/pref_aecdump_title" 106 android:title="@string/pref_aecdump_title"
107 android:dialogTitle="@string/pref_aecdump_dlg" 107 android:dialogTitle="@string/pref_aecdump_dlg"
108 android:defaultValue="@string/pref_aecdump_default" /> 108 android:defaultValue="@string/pref_aecdump_default" />
109 109
110 <CheckBoxPreference 110 <CheckBoxPreference
111 android:key="@string/pref_opensles_key" 111 android:key="@string/pref_opensles_key"
112 android:title="@string/pref_opensles_title" 112 android:title="@string/pref_opensles_title"
113 android:dialogTitle="@string/pref_opensles_dlg" 113 android:dialogTitle="@string/pref_opensles_dlg"
114 android:defaultValue="@string/pref_opensles_default" /> 114 android:defaultValue="@string/pref_opensles_default" />
115
116 <CheckBoxPreference
117 android:key="@string/pref_disable_built_in_aec_key"
118 android:title="@string/pref_disable_built_in_aec_title"
119 android:dialogTitle="@string/pref_disable_built_in_aec_dlg"
120 android:defaultValue="@string/pref_disable_built_in_aec_default" />
115 </PreferenceCategory> 121 </PreferenceCategory>
116 122
117 <PreferenceCategory 123 <PreferenceCategory
118 android:key="@string/pref_miscsettings_key" 124 android:key="@string/pref_miscsettings_key"
119 android:title="@string/pref_miscsettings_title"> 125 android:title="@string/pref_miscsettings_title">
120 126
121 <EditTextPreference 127 <EditTextPreference
122 android:key="@string/pref_room_server_url_key" 128 android:key="@string/pref_room_server_url_key"
123 android:title="@string/pref_room_server_url_title" 129 android:title="@string/pref_room_server_url_title"
124 android:inputType="text" 130 android:inputType="text"
125 android:defaultValue="@string/pref_room_server_url_default" 131 android:defaultValue="@string/pref_room_server_url_default"
126 android:dialogTitle="@string/pref_room_server_url_dlg" /> 132 android:dialogTitle="@string/pref_room_server_url_dlg" />
127 133
128 <CheckBoxPreference 134 <CheckBoxPreference
129 android:key="@string/pref_displayhud_key" 135 android:key="@string/pref_displayhud_key"
130 android:title="@string/pref_displayhud_title" 136 android:title="@string/pref_displayhud_title"
131 android:dialogTitle="@string/pref_displayhud_dlg" 137 android:dialogTitle="@string/pref_displayhud_dlg"
132 android:defaultValue="@string/pref_displayhud_default" /> 138 android:defaultValue="@string/pref_displayhud_default" />
133 139
134 <CheckBoxPreference 140 <CheckBoxPreference
135 android:key="@string/pref_tracing_key" 141 android:key="@string/pref_tracing_key"
136 android:title="@string/pref_tracing_title" 142 android:title="@string/pref_tracing_title"
137 android:dialogTitle="@string/pref_tracing_dlg" 143 android:dialogTitle="@string/pref_tracing_dlg"
138 android:defaultValue="@string/pref_tracing_default" /> 144 android:defaultValue="@string/pref_tracing_default" />
139 </PreferenceCategory> 145 </PreferenceCategory>
140 146
141 </PreferenceScreen> 147 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698