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

Side by Side Diff: webrtc/examples/androidapp/res/values/arrays.xml

Issue 2077663003: Camera2 in AppRTC Android Demo. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@camera2_only
Patch Set: Rebase. Created 4 years, 5 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 <resources> 2 <resources>
3 <string-array name="enableDisableForce">
magjed_webrtc 2016/06/29 13:36:44 This name looks weird. Shouldn't at least 'camera2
sakal 2016/06/30 09:14:52 Done.
4 <item>Enable</item>
magjed_webrtc 2016/06/29 13:36:45 I think you should go with 'Default', 'True', 'Fal
sakal 2016/06/30 09:14:52 Done.
5 <item>Disable</item>
6 <item>Force enable</item>
7 </string-array>
8
9 <string-array name="enableDisableForceValues">
10 <item>true</item>
11 <item>false</item>
12 <item>force</item>
13 </string-array>
14
3 <string-array name="videoResolutions"> 15 <string-array name="videoResolutions">
4 <item>Default</item> 16 <item>Default</item>
5 <item>HD (1280 x 720)</item> 17 <item>HD (1280 x 720)</item>
6 <item>VGA (640 x 480)</item> 18 <item>VGA (640 x 480)</item>
7 <item>QVGA (320 x 240)</item> 19 <item>QVGA (320 x 240)</item>
8 </string-array> 20 </string-array>
9 21
10 <string-array name="videoResolutionsValues"> 22 <string-array name="videoResolutionsValues">
11 <item>Default</item> 23 <item>Default</item>
12 <item>1280 x 720</item> 24 <item>1280 x 720</item>
(...skipping 21 matching lines...) Expand all
34 <string-array name="audioCodecs"> 46 <string-array name="audioCodecs">
35 <item>OPUS</item> 47 <item>OPUS</item>
36 <item>ISAC</item> 48 <item>ISAC</item>
37 </string-array> 49 </string-array>
38 50
39 <string-array name="roomListContextMenu"> 51 <string-array name="roomListContextMenu">
40 <item>Remove favorite</item> 52 <item>Remove favorite</item>
41 </string-array> 53 </string-array>
42 54
43 </resources> 55 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698