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

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: naming change 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
9 package="org.chromium.chromecast.shell">
10
11 <permission android:name="org.chromium.chromecast.shell.permission.SANDBOX"
12 android:protectionLevel="signature" />
13
14 <application android:name="org.chromium.chromecast.shell.CastApplication"
15 android:icon="@mipmap/app_icon"
16 android:label="@string/app_name">
17 <activity android:name="org.chromium.chromecast.shell.CastShellActivity"
18 android:theme="@style/CastShellTheme"
19 android:exported="true"
20 android:hardwareAccelerated="true"
21 android:taskAffinity=".CastShellActivity"
22 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
23 android:excludeFromRecents="true"
24 android:noHistory="true"
25 android:permission="android.permission.INTERNET">
26 <intent-filter>
27 <action android:name="android.intent.action.MAIN"/>
28 <category android:name="android.intent.category.LAUNCHER"/>
29 </intent-filter>
30 </activity>
31
32 <!-- The following service entries exist in order to allow us to
33 start more than one sandboxed process. -->
34 <service android:name="org.chromium.content.app.SandboxedProcessService0 "
35 android:process=":sandboxed_process0"
36 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
37 android:isolatedProcess="true"
38 android:exported="false" />
39 <service android:name="org.chromium.content.app.SandboxedProcessService1 "
40 android:process=":sandboxed_process1"
41 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
42 android:isolatedProcess="true"
43 android:exported="false" />
44 <service android:name="org.chromium.content.app.SandboxedProcessService2 "
45 android:process=":sandboxed_process2"
46 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
47 android:isolatedProcess="true"
48 android:exported="false" />
49 <service android:name="org.chromium.content.app.SandboxedProcessService3 "
50 android:process=":sandboxed_process3"
51 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
52 android:isolatedProcess="true"
53 android:exported="false" />
54 <service android:name="org.chromium.content.app.SandboxedProcessService4 "
55 android:process=":sandboxed_process4"
56 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
57 android:isolatedProcess="true"
58 android:exported="false" />
59 <service android:name="org.chromium.content.app.SandboxedProcessService5 "
60 android:process=":sandboxed_process5"
61 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
62 android:isolatedProcess="true"
63 android:exported="false" />
64 <service android:name="org.chromium.content.app.SandboxedProcessService6 "
65 android:process=":sandboxed_process6"
66 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
67 android:isolatedProcess="true"
68 android:exported="false" />
69 <service android:name="org.chromium.content.app.SandboxedProcessService7 "
70 android:process=":sandboxed_process7"
71 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
72 android:isolatedProcess="true"
73 android:exported="false" />
74 <service android:name="org.chromium.content.app.SandboxedProcessService8 "
75 android:process=":sandboxed_process8"
76 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
77 android:isolatedProcess="true"
78 android:exported="false" />
79 <service android:name="org.chromium.content.app.SandboxedProcessService9 "
80 android:process=":sandboxed_process9"
81 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
82 android:isolatedProcess="true"
83 android:exported="false" />
84 <service android:name="org.chromium.content.app.SandboxedProcessService1 0"
85 android:process=":sandboxed_process10"
86 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
87 android:isolatedProcess="true"
88 android:exported="false" />
89 <service android:name="org.chromium.content.app.SandboxedProcessService1 1"
90 android:process=":sandboxed_process11"
91 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
92 android:isolatedProcess="true"
93 android:exported="false" />
94 <service android:name="org.chromium.content.app.SandboxedProcessService1 2"
Yaron 2014/09/06 01:10:13 These were upped to 19 as part of not re-using ren
gunsch 2014/09/08 19:42:23 Done.
95 android:process=":sandboxed_process12"
96 android:permission="org.chromium.chromecast.shell.permission.SA NDBOX"
97 android:isolatedProcess="true"
98 android:exported="false" />
99 </application>
100
101 <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" />
102 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
103 <uses-permission android:name="android.permission.INTERNET"/>
104 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
105 <uses-permission android:name="android.permission.WAKE_LOCK"/>
106
107 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698