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

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

Issue 2488643002: Add screenshare support to AppRTCMobile. (Closed)
Patch Set: Use correct capturing format. Created 4 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"
11 android:defaultValue="@string/pref_videocall_default" /> 11 android:defaultValue="@string/pref_videocall_default" />
12 12
13 <CheckBoxPreference 13 <CheckBoxPreference
14 android:key="@string/pref_screencapture_key"
15 android:title="@string/pref_screencapture_title"
16 android:defaultValue="@string/pref_screencapture_default" />
17
18 <CheckBoxPreference
14 android:key="@string/pref_camera2_key" 19 android:key="@string/pref_camera2_key"
15 android:title="@string/pref_camera2_title" 20 android:title="@string/pref_camera2_title"
16 android:defaultValue="@string/pref_camera2_default" /> 21 android:defaultValue="@string/pref_camera2_default" />
17 22
18 <ListPreference 23 <ListPreference
19 android:key="@string/pref_resolution_key" 24 android:key="@string/pref_resolution_key"
20 android:title="@string/pref_resolution_title" 25 android:title="@string/pref_resolution_title"
21 android:defaultValue="@string/pref_resolution_default" 26 android:defaultValue="@string/pref_resolution_default"
22 android:dialogTitle="@string/pref_resolution_dlg" 27 android:dialogTitle="@string/pref_resolution_dlg"
23 android:entries="@array/videoResolutions" 28 android:entries="@array/videoResolutions"
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 android:defaultValue="@string/pref_displayhud_default" /> 173 android:defaultValue="@string/pref_displayhud_default" />
169 174
170 <CheckBoxPreference 175 <CheckBoxPreference
171 android:key="@string/pref_tracing_key" 176 android:key="@string/pref_tracing_key"
172 android:title="@string/pref_tracing_title" 177 android:title="@string/pref_tracing_title"
173 android:dialogTitle="@string/pref_tracing_dlg" 178 android:dialogTitle="@string/pref_tracing_dlg"
174 android:defaultValue="@string/pref_tracing_default" /> 179 android:defaultValue="@string/pref_tracing_default" />
175 </PreferenceCategory> 180 </PreferenceCategory>
176 181
177 </PreferenceScreen> 182 </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