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

Side by Side Diff: chromecast/shell/android/apk/AndroidManifest.xml

Issue 490603002: Chromecast: initial checkin of Android-based cast shell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added android DEPS (git cl presubmit doesn't check Java DEPS?) Created 6 years, 3 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 2
3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4
5 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 5 found in the LICENSE file.
7 --> 6 -->
8 7
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.chromium_linker_test_apk"> 9 package="org.chromium.chromecast.shell">
11 10
12 <permission android:name="org.chromium.content_shell.permission.SANDBOX" 11 <permission android:name="org.chromium.chromecast.shell.permission.SANDBOX"
13 android:protectionLevel="signature" /> 12 android:protectionLevel="signature" />
14 13
15 <application android:name="ChromiumLinkerTestApplication" 14 <application android:name="org.chromium.chromecast.shell.CastApplication"
16 android:label="ChromiumLinkerTest"> 15 android:icon="@mipmap/app_icon"
17 <activity android:name="ChromiumLinkerTestActivity" 16 android:label="@string/app_name">
18 android:launchMode="singleTask" 17 <activity android:name="org.chromium.chromecast.shell.CastShellActivity"
19 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 18 android:theme="@style/CastShellTheme"
19 android:exported="true"
20 android:hardwareAccelerated="true"
21 android:taskAffinity=".CastShellActivity"
20 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 22 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
21 android:hardwareAccelerated="true"> 23 android:excludeFromRecents="true"
24 android:noHistory="true"
25 android:permission="android.permission.INTERNET">
22 <intent-filter> 26 <intent-filter>
23 <action android:name="android.intent.action.MAIN"/> 27 <action android:name="android.intent.action.MAIN"/>
24 <category android:name="android.intent.category.LAUNCHER"/> 28 <category android:name="android.intent.category.LAUNCHER"/>
25 </intent-filter> 29 </intent-filter>
26 </activity> 30 </activity>
31
27 <!-- The following service entries exist in order to allow us to 32 <!-- The following service entries exist in order to allow us to
28 start more than one sandboxed process. --> 33 start more than one sandboxed process. -->
29
30 <!-- NOTE: If you change the values of "android:process" for any of the below services,
31 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. -->
32 <service android:name="org.chromium.content.app.SandboxedProcessService0 " 34 <service android:name="org.chromium.content.app.SandboxedProcessService0 "
33 android:process=":sandboxed_process0" 35 android:process=":sandboxed_process0"
34 android:permission="org.chromium.content_shell.permission.SANDB OX" 36 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
35 android:isolatedProcess="true" 37 android:isolatedProcess="true"
36 android:exported="false" /> 38 android:exported="false" />
37 <service android:name="org.chromium.content.app.SandboxedProcessService1 " 39 <service android:name="org.chromium.content.app.SandboxedProcessService1 "
38 android:process=":sandboxed_process1" 40 android:process=":sandboxed_process1"
39 android:permission="org.chromium.content_shell.permission.SANDB OX" 41 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
40 android:isolatedProcess="true" 42 android:isolatedProcess="true"
41 android:exported="false" /> 43 android:exported="false" />
42 <service android:name="org.chromium.content.app.SandboxedProcessService2 " 44 <service android:name="org.chromium.content.app.SandboxedProcessService2 "
43 android:process=":sandboxed_process2" 45 android:process=":sandboxed_process2"
44 android:permission="org.chromium.content_shell.permission.SANDB OX" 46 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
45 android:isolatedProcess="true" 47 android:isolatedProcess="true"
46 android:exported="false" /> 48 android:exported="false" />
47 <service android:name="org.chromium.content.app.SandboxedProcessService3 " 49 <service android:name="org.chromium.content.app.SandboxedProcessService3 "
48 android:process=":sandboxed_process3" 50 android:process=":sandboxed_process3"
49 android:permission="org.chromium.content_shell.permission.SANDB OX" 51 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
50 android:isolatedProcess="true" 52 android:isolatedProcess="true"
51 android:exported="false" /> 53 android:exported="false" />
52 <service android:name="org.chromium.content.app.SandboxedProcessService4 " 54 <service android:name="org.chromium.content.app.SandboxedProcessService4 "
53 android:process=":sandboxed_process4" 55 android:process=":sandboxed_process4"
54 android:permission="org.chromium.content_shell.permission.SANDB OX" 56 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
55 android:isolatedProcess="true" 57 android:isolatedProcess="true"
56 android:exported="false" /> 58 android:exported="false" />
57 <service android:name="org.chromium.content.app.SandboxedProcessService5 " 59 <service android:name="org.chromium.content.app.SandboxedProcessService5 "
58 android:process=":sandboxed_process5" 60 android:process=":sandboxed_process5"
59 android:permission="org.chromium.content_shell.permission.SANDB OX" 61 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
60 android:isolatedProcess="true" 62 android:isolatedProcess="true"
61 android:exported="false" /> 63 android:exported="false" />
62 <service android:name="org.chromium.content.app.SandboxedProcessService6 " 64 <service android:name="org.chromium.content.app.SandboxedProcessService6 "
63 android:process=":sandboxed_process6" 65 android:process=":sandboxed_process6"
64 android:permission="org.chromium.content_shell.permission.SANDB OX" 66 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
65 android:isolatedProcess="true" 67 android:isolatedProcess="true"
66 android:exported="false" /> 68 android:exported="false" />
67 <service android:name="org.chromium.content.app.SandboxedProcessService7 " 69 <service android:name="org.chromium.content.app.SandboxedProcessService7 "
68 android:process=":sandboxed_process7" 70 android:process=":sandboxed_process7"
69 android:permission="org.chromium.content_shell.permission.SANDB OX" 71 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
70 android:isolatedProcess="true" 72 android:isolatedProcess="true"
71 android:exported="false" /> 73 android:exported="false" />
72 <service android:name="org.chromium.content.app.SandboxedProcessService8 " 74 <service android:name="org.chromium.content.app.SandboxedProcessService8 "
73 android:process=":sandboxed_process8" 75 android:process=":sandboxed_process8"
74 android:permission="org.chromium.content_shell.permission.SANDB OX" 76 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
75 android:isolatedProcess="true" 77 android:isolatedProcess="true"
76 android:exported="false" /> 78 android:exported="false" />
77 <service android:name="org.chromium.content.app.SandboxedProcessService9 " 79 <service android:name="org.chromium.content.app.SandboxedProcessService9 "
78 android:process=":sandboxed_process9" 80 android:process=":sandboxed_process9"
79 android:permission="org.chromium.content_shell.permission.SANDB OX" 81 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
80 android:isolatedProcess="true" 82 android:isolatedProcess="true"
81 android:exported="false" /> 83 android:exported="false" />
82 <service android:name="org.chromium.content.app.SandboxedProcessService1 0" 84 <service android:name="org.chromium.content.app.SandboxedProcessService1 0"
83 android:process=":sandboxed_process10" 85 android:process=":sandboxed_process10"
84 android:permission="org.chromium.content_shell.permission.SANDB OX" 86 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
85 android:isolatedProcess="true" 87 android:isolatedProcess="true"
86 android:exported="false" /> 88 android:exported="false" />
87 <service android:name="org.chromium.content.app.SandboxedProcessService1 1" 89 <service android:name="org.chromium.content.app.SandboxedProcessService1 1"
88 android:process=":sandboxed_process11" 90 android:process=":sandboxed_process11"
89 android:permission="org.chromium.content_shell.permission.SANDB OX" 91 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
90 android:isolatedProcess="true" 92 android:isolatedProcess="true"
91 android:exported="false" /> 93 android:exported="false" />
92 <service android:name="org.chromium.content.app.SandboxedProcessService1 2" 94 <service android:name="org.chromium.content.app.SandboxedProcessService1 2"
93 android:process=":sandboxed_process12" 95 android:process=":sandboxed_process12"
94 android:permission="org.chromium.content_shell.permission.SANDB OX" 96 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
95 android:isolatedProcess="true" 97 android:isolatedProcess="true"
96 android:exported="false" /> 98 android:exported="false" />
97 <service android:name="org.chromium.content.app.SandboxedProcessService1 3" 99 <service android:name="org.chromium.content.app.SandboxedProcessService1 3"
98 android:process=":sandboxed_process13" 100 android:process=":sandboxed_process13"
99 android:permission="org.chromium.content_shell.permission.SANDB OX" 101 android:permission="org.chromium.content_shell.permission.SANDB OX"
100 android:isolatedProcess="true" 102 android:isolatedProcess="true"
101 android:exported="false" /> 103 android:exported="false" />
102 <service android:name="org.chromium.content.app.SandboxedProcessService1 4" 104 <service android:name="org.chromium.content.app.SandboxedProcessService1 4"
103 android:process=":sandboxed_process14" 105 android:process=":sandboxed_process14"
104 android:permission="org.chromium.content_shell.permission.SANDB OX" 106 android:permission="org.chromium.content_shell.permission.SANDB OX"
(...skipping 19 matching lines...) Expand all
124 android:permission="org.chromium.content_shell.permission.SANDB OX" 126 android:permission="org.chromium.content_shell.permission.SANDB OX"
125 android:isolatedProcess="true" 127 android:isolatedProcess="true"
126 android:exported="false" /> 128 android:exported="false" />
127 <service android:name="org.chromium.content.app.SandboxedProcessService1 9" 129 <service android:name="org.chromium.content.app.SandboxedProcessService1 9"
128 android:process=":sandboxed_process19" 130 android:process=":sandboxed_process19"
129 android:permission="org.chromium.content_shell.permission.SANDB OX" 131 android:permission="org.chromium.content_shell.permission.SANDB OX"
130 android:isolatedProcess="true" 132 android:isolatedProcess="true"
131 android:exported="false" /> 133 android:exported="false" />
132 </application> 134 </application>
133 135
134 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="20" /> 136 <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" />
135 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
136 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 137 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
137 <uses-permission android:name="android.permission.CAMERA" />
138 <uses-permission android:name="android.permission.INTERNET"/> 138 <uses-permission android:name="android.permission.INTERNET"/>
139 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> 139 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
140 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
141 <uses-permission android:name="android.permission.VIBRATE"/>
142 <uses-permission android:name="android.permission.WAKE_LOCK"/> 140 <uses-permission android:name="android.permission.WAKE_LOCK"/>
143 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 141
144 </manifest> 142 </manifest>
OLDNEW
« no previous file with comments | « chromecast/shell/android/DEPS ('k') | chromecast/shell/android/apk/res/layout/cast_shell_activity.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698