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

Side by Side Diff: content/shell/android/AndroidManifest.xml

Issue 10546079: Added sandboxed process service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync Created 8 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 | Annotate | Revision Log
« no previous file with comments | « content/shell/DEPS ('k') | no next file » | 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 2
3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 4
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 8
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.content_shell" 10 package="org.chromium.content_shell"
11 android:versionCode="1" 11 android:versionCode="1"
12 android:versionName="1.0"> 12 android:versionName="1.0">
13 13
14 <application android:name="ContentShellApplication" 14 <application android:name="ContentShellApplication"
15 android:label="ContentShell" 15 android:label="ContentShell"
16 android:debuggable="true"> 16 android:debuggable="true">
17 <activity android:name="ContentShellActivity" 17 <activity android:name="ContentShellActivity"
18 android:launchMode="singleTask" 18 android:launchMode="singleTask"
19 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 19 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
20 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 20 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
21 android:hardwareAccelerated="true"> 21 android:hardwareAccelerated="true">
22 <intent-filter> 22 <intent-filter>
23 <action android:name="android.intent.action.MAIN"/> 23 <action android:name="android.intent.action.MAIN"/>
24 <category android:name="android.intent.category.LAUNCHER"/> 24 <category android:name="android.intent.category.LAUNCHER"/>
25 </intent-filter> 25 </intent-filter>
26 </activity> 26 </activity>
27 <!-- NOTE: If you change the values of "android:process" for any of the below services,
28 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. -->
29 <service android:name="org.chromium.content.app.SanboxedProcessService0"
30 android:process=":sandboxed_process0"
31 android:permission="org.chromium.content_shell.permission.SANDB OX"
32 android:exported="false" />
33 <service android:name="org.chromium.content.app.SanboxedProcessService1"
34 android:process=":sandboxed_process1"
35 android:permission="org.chromium.content_shell.permission.SANDB OX"
36 android:exported="false" />
37 <service android:name="org.chromium.content.app.SanboxedProcessService2"
38 android:process=":sandboxed_process2"
39 android:permission="org.chromium.content_shell.permission.SANDB OX"
40 android:exported="false" />
41 <service android:name="org.chromium.content.app.SanboxedProcessService3"
42 android:process=":sandboxed_process3"
43 android:permission="org.chromium.content_shell.permission.SANDB OX"
44 android:exported="false" />
45 <service android:name="org.chromium.content.app.SanboxedProcessService4"
46 android:process=":sandboxed_process4"
47 android:permission="org.chromium.content_shell.permission.SANDB OX"
48 android:exported="false" />
27 </application> 49 </application>
28 50
29 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" /> 51 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" />
30 <uses-permission android:name="android.permission.INTERNET"/> 52 <uses-permission android:name="android.permission.INTERNET"/>
31 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 53 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
32 </manifest> 54 </manifest>
OLDNEW
« no previous file with comments | « content/shell/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698