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

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: Created 4 years, 6 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
« no previous file with comments | « no previous file | webrtc/examples/androidapp/res/values/strings.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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">
4 <item>Enable</item>
5 <item>Disable</item>
6 <item>Force enable</item>
nisse-webrtc 2016/06/20 09:00:28 I think I'd prefer Enable/Disable/Auto (with Auto
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
« no previous file with comments | « no previous file | webrtc/examples/androidapp/res/values/strings.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698