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

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

Issue 2194613003: Add an option to disable proximity sensor to AppRTC Demo Android. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@levelcontrol
Patch Set: Created 4 years, 4 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="videoResolutions"> 3 <string-array name="videoResolutions">
4 <item>Default</item> 4 <item>Default</item>
5 <item>HD (1280 x 720)</item> 5 <item>HD (1280 x 720)</item>
6 <item>VGA (640 x 480)</item> 6 <item>VGA (640 x 480)</item>
7 <item>QVGA (320 x 240)</item> 7 <item>QVGA (320 x 240)</item>
8 </string-array> 8 </string-array>
9 9
10 <string-array name="videoResolutionsValues"> 10 <string-array name="videoResolutionsValues">
(...skipping 18 matching lines...) Expand all
29 <item>VP8</item> 29 <item>VP8</item>
30 <item>VP9</item> 30 <item>VP9</item>
31 <item>H264</item> 31 <item>H264</item>
32 </string-array> 32 </string-array>
33 33
34 <string-array name="audioCodecs"> 34 <string-array name="audioCodecs">
35 <item>OPUS</item> 35 <item>OPUS</item>
36 <item>ISAC</item> 36 <item>ISAC</item>
37 </string-array> 37 </string-array>
38 38
39 <string-array name="speakerphone">
40 <item>Auto (proximity sensor)</item>
41 <item>Enabled</item>
42 <item>Disabled</item>
43 </string-array>
44
45 <string-array name="speakerphoneValues">
46 <item>auto</item>
47 <item>true</item>
48 <item>false</item>
49 </string-array>
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