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

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

Issue 1514473008: Add aecdump support to AppRTCDemo (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix try and tests Created 5 years 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 android:entries="@array/audioCodecs" 95 android:entries="@array/audioCodecs"
96 android:entryValues="@array/audioCodecs" /> 96 android:entryValues="@array/audioCodecs" />
97 97
98 <CheckBoxPreference 98 <CheckBoxPreference
99 android:key="@string/pref_noaudioprocessing_key" 99 android:key="@string/pref_noaudioprocessing_key"
100 android:title="@string/pref_noaudioprocessing_title" 100 android:title="@string/pref_noaudioprocessing_title"
101 android:dialogTitle="@string/pref_noaudioprocessing_dlg" 101 android:dialogTitle="@string/pref_noaudioprocessing_dlg"
102 android:defaultValue="@string/pref_noaudioprocessing_default" /> 102 android:defaultValue="@string/pref_noaudioprocessing_default" />
103 103
104 <CheckBoxPreference 104 <CheckBoxPreference
105 android:key="@string/pref_aecdump_key"
106 android:title="@string/pref_aecdump_title"
107 android:dialogTitle="@string/pref_aecdump_dlg"
108 android:defaultValue="@string/pref_aecdump_default" />
109
110 <CheckBoxPreference
105 android:key="@string/pref_opensles_key" 111 android:key="@string/pref_opensles_key"
106 android:title="@string/pref_opensles_title" 112 android:title="@string/pref_opensles_title"
107 android:dialogTitle="@string/pref_opensles_dlg" 113 android:dialogTitle="@string/pref_opensles_dlg"
108 android:defaultValue="@string/pref_opensles_default" /> 114 android:defaultValue="@string/pref_opensles_default" />
109 </PreferenceCategory> 115 </PreferenceCategory>
110 116
111 <PreferenceCategory 117 <PreferenceCategory
112 android:key="@string/pref_miscsettings_key" 118 android:key="@string/pref_miscsettings_key"
113 android:title="@string/pref_miscsettings_title"> 119 android:title="@string/pref_miscsettings_title">
114 120
115 <EditTextPreference 121 <EditTextPreference
116 android:key="@string/pref_room_server_url_key" 122 android:key="@string/pref_room_server_url_key"
117 android:title="@string/pref_room_server_url_title" 123 android:title="@string/pref_room_server_url_title"
118 android:inputType="text" 124 android:inputType="text"
119 android:defaultValue="@string/pref_room_server_url_default" 125 android:defaultValue="@string/pref_room_server_url_default"
120 android:dialogTitle="@string/pref_room_server_url_dlg" /> 126 android:dialogTitle="@string/pref_room_server_url_dlg" />
121 127
122 <CheckBoxPreference 128 <CheckBoxPreference
123 android:key="@string/pref_displayhud_key" 129 android:key="@string/pref_displayhud_key"
124 android:title="@string/pref_displayhud_title" 130 android:title="@string/pref_displayhud_title"
125 android:dialogTitle="@string/pref_displayhud_dlg" 131 android:dialogTitle="@string/pref_displayhud_dlg"
126 android:defaultValue="@string/pref_displayhud_default" /> 132 android:defaultValue="@string/pref_displayhud_default" />
127 </PreferenceCategory> 133 </PreferenceCategory>
128 134
129 </PreferenceScreen> 135 </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