diff options
author | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-09 22:37:13 +0000 |
---|---|---|
committer | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-09 22:37:13 +0000 |
commit | 77ffc3206f88a2663b4d437c23d0dc65de313567 (patch) | |
tree | ad55add28f42b12dc36adf315eb831c16fce8a91 /content/shell | |
parent | 1521b2a1346ad796deea70fee4b4ffa029f236d8 (diff) | |
download | chromium_src-77ffc3206f88a2663b4d437c23d0dc65de313567.zip chromium_src-77ffc3206f88a2663b4d437c23d0dc65de313567.tar.gz chromium_src-77ffc3206f88a2663b4d437c23d0dc65de313567.tar.bz2 |
Turn on UID isolation for content shell and chromium testshell.
Review URL: https://codereview.chromium.org/11087035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160955 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell')
-rw-r--r-- | content/shell/android/java/AndroidManifest.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/content/shell/android/java/AndroidManifest.xml b/content/shell/android/java/AndroidManifest.xml index c957dcd..141a0a4 100644 --- a/content/shell/android/java/AndroidManifest.xml +++ b/content/shell/android/java/AndroidManifest.xml @@ -24,7 +24,6 @@ <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> - <!-- The following service entries exist in order to allow us to start more than one sandboxed process. --> @@ -33,26 +32,32 @@ <service android:name="org.chromium.content.app.SandboxedProcessService0" android:process=":sandboxed_process0" android:permission="org.chromium.content_shell.permission.SANDBOX" + android:isolatedProcess="true" android:exported="false" /> <service android:name="org.chromium.content.app.SandboxedProcessService1" android:process=":sandboxed_process1" android:permission="org.chromium.content_shell.permission.SANDBOX" + android:isolatedProcess="true" android:exported="false" /> <service android:name="org.chromium.content.app.SandboxedProcessService2" android:process=":sandboxed_process2" android:permission="org.chromium.content_shell.permission.SANDBOX" + android:isolatedProcess="true" android:exported="false" /> <service android:name="org.chromium.content.app.SandboxedProcessService3" android:process=":sandboxed_process3" android:permission="org.chromium.content_shell.permission.SANDBOX" + android:isolatedProcess="true" android:exported="false" /> <service android:name="org.chromium.content.app.SandboxedProcessService4" android:process=":sandboxed_process4" android:permission="org.chromium.content_shell.permission.SANDBOX" + android:isolatedProcess="true" android:exported="false" /> <service android:name="org.chromium.content.app.SandboxedProcessService5" android:process=":sandboxed_process5" android:permission="org.chromium.content_shell.permission.SANDBOX" + android:isolatedProcess="true" android:exported="false" /> </application> |