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

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

Issue 1449083002: Add OpenSL ES enable setting to AppRTCDemo. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Fix typo Created 5 years, 1 month 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 android:defaultValue="@string/pref_audiocodec_default" 87 android:defaultValue="@string/pref_audiocodec_default"
88 android:dialogTitle="@string/pref_audiocodec_dlg" 88 android:dialogTitle="@string/pref_audiocodec_dlg"
89 android:entries="@array/audioCodecs" 89 android:entries="@array/audioCodecs"
90 android:entryValues="@array/audioCodecs" /> 90 android:entryValues="@array/audioCodecs" />
91 91
92 <CheckBoxPreference 92 <CheckBoxPreference
93 android:key="@string/pref_noaudioprocessing_key" 93 android:key="@string/pref_noaudioprocessing_key"
94 android:title="@string/pref_noaudioprocessing_title" 94 android:title="@string/pref_noaudioprocessing_title"
95 android:dialogTitle="@string/pref_noaudioprocessing_dlg" 95 android:dialogTitle="@string/pref_noaudioprocessing_dlg"
96 android:defaultValue="@string/pref_noaudioprocessing_default" /> 96 android:defaultValue="@string/pref_noaudioprocessing_default" />
97
98 <CheckBoxPreference
99 android:key="@string/pref_opensles_key"
100 android:title="@string/pref_opensles_title"
101 android:dialogTitle="@string/pref_opensles_dlg"
102 android:defaultValue="@string/pref_opensles_default" />
97 </PreferenceCategory> 103 </PreferenceCategory>
98 104
99 <PreferenceCategory 105 <PreferenceCategory
100 android:key="@string/pref_miscsettings_key" 106 android:key="@string/pref_miscsettings_key"
101 android:title="@string/pref_miscsettings_title"> 107 android:title="@string/pref_miscsettings_title">
102 108
103 <CheckBoxPreference
104 android:key="@string/pref_cpu_usage_detection_key"
105 android:title="@string/pref_cpu_usage_detection_title"
106 android:dialogTitle="@string/pref_cpu_usage_detection_dlg"
107 android:defaultValue="@string/pref_cpu_usage_detection_default" />
108
109 <EditTextPreference 109 <EditTextPreference
110 android:key="@string/pref_room_server_url_key" 110 android:key="@string/pref_room_server_url_key"
111 android:title="@string/pref_room_server_url_title" 111 android:title="@string/pref_room_server_url_title"
112 android:inputType="text" 112 android:inputType="text"
113 android:defaultValue="@string/pref_room_server_url_default" 113 android:defaultValue="@string/pref_room_server_url_default"
114 android:dialogTitle="@string/pref_room_server_url_dlg" /> 114 android:dialogTitle="@string/pref_room_server_url_dlg" />
115 115
116 <CheckBoxPreference 116 <CheckBoxPreference
117 android:key="@string/pref_displayhud_key" 117 android:key="@string/pref_displayhud_key"
118 android:title="@string/pref_displayhud_title" 118 android:title="@string/pref_displayhud_title"
119 android:dialogTitle="@string/pref_displayhud_dlg" 119 android:dialogTitle="@string/pref_displayhud_dlg"
120 android:defaultValue="@string/pref_displayhud_default" /> 120 android:defaultValue="@string/pref_displayhud_default" />
121 </PreferenceCategory> 121 </PreferenceCategory>
122 122
123 </PreferenceScreen> 123 </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