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

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

Issue 2550393002: Add FlexFEC settings toggle in Android AppRTCMobile. (Closed)
Patch Set: Created 4 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 android:key="@string/pref_hwcodec_key" 69 android:key="@string/pref_hwcodec_key"
70 android:title="@string/pref_hwcodec_title" 70 android:title="@string/pref_hwcodec_title"
71 android:dialogTitle="@string/pref_hwcodec_dlg" 71 android:dialogTitle="@string/pref_hwcodec_dlg"
72 android:defaultValue="@string/pref_hwcodec_default" /> 72 android:defaultValue="@string/pref_hwcodec_default" />
73 73
74 <CheckBoxPreference 74 <CheckBoxPreference
75 android:key="@string/pref_capturetotexture_key" 75 android:key="@string/pref_capturetotexture_key"
76 android:title="@string/pref_capturetotexture_title" 76 android:title="@string/pref_capturetotexture_title"
77 android:dialogTitle="@string/pref_capturetotexture_dlg" 77 android:dialogTitle="@string/pref_capturetotexture_dlg"
78 android:defaultValue="@string/pref_capturetotexture_default" /> 78 android:defaultValue="@string/pref_capturetotexture_default" />
79
80 <CheckBoxPreference
81 android:key="@string/pref_flexfec_key"
82 android:title="@string/pref_flexfec_title"
83 android:dialogTitle="@string/pref_flexfec_dlg"
84 android:defaultValue="@string/pref_flexfec_default" />
79 </PreferenceCategory> 85 </PreferenceCategory>
80 86
81 <PreferenceCategory 87 <PreferenceCategory
82 android:key="@string/pref_audiosettings_key" 88 android:key="@string/pref_audiosettings_key"
83 android:title="@string/pref_audiosettings_title"> 89 android:title="@string/pref_audiosettings_title">
84 90
85 <ListPreference 91 <ListPreference
86 android:key="@string/pref_startaudiobitrate_key" 92 android:key="@string/pref_startaudiobitrate_key"
87 android:title="@string/pref_startaudiobitrate_title" 93 android:title="@string/pref_startaudiobitrate_title"
88 android:defaultValue="@string/pref_startaudiobitrate_default" 94 android:defaultValue="@string/pref_startaudiobitrate_default"
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 android:defaultValue="@string/pref_displayhud_default" /> 227 android:defaultValue="@string/pref_displayhud_default" />
222 228
223 <CheckBoxPreference 229 <CheckBoxPreference
224 android:key="@string/pref_tracing_key" 230 android:key="@string/pref_tracing_key"
225 android:title="@string/pref_tracing_title" 231 android:title="@string/pref_tracing_title"
226 android:dialogTitle="@string/pref_tracing_dlg" 232 android:dialogTitle="@string/pref_tracing_dlg"
227 android:defaultValue="@string/pref_tracing_default" /> 233 android:defaultValue="@string/pref_tracing_default" />
228 </PreferenceCategory> 234 </PreferenceCategory>
229 235
230 </PreferenceScreen> 236 </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