| Index: content/shell/android/AndroidManifest.xml
|
| diff --git a/content/shell/android/AndroidManifest.xml b/content/shell/android/AndroidManifest.xml
|
| index 74a090f1a7b8d5156ed3b227ceafbdcc9ff4b94c..9a5fd67db1af690f5af872451d929a1cc47c01e8 100644
|
| --- a/content/shell/android/AndroidManifest.xml
|
| +++ b/content/shell/android/AndroidManifest.xml
|
| @@ -24,8 +24,30 @@
|
| <category android:name="android.intent.category.LAUNCHER"/>
|
| </intent-filter>
|
| </activity>
|
| + <!-- NOTE: If you change the values of "android:process" for any of the below services,
|
| + you also need to update kHelperProcessExecutableName in chrome_constants.cc. -->
|
| + <service android:name="org.chromium.content.app.SanboxedProcessService0"
|
| + android:process=":sandboxed_process0"
|
| + android:permission="org.chromium.content_shell.permission.SANDBOX"
|
| + android:exported="false" />
|
| + <service android:name="org.chromium.content.app.SanboxedProcessService1"
|
| + android:process=":sandboxed_process1"
|
| + android:permission="org.chromium.content_shell.permission.SANDBOX"
|
| + android:exported="false" />
|
| + <service android:name="org.chromium.content.app.SanboxedProcessService2"
|
| + android:process=":sandboxed_process2"
|
| + android:permission="org.chromium.content_shell.permission.SANDBOX"
|
| + android:exported="false" />
|
| + <service android:name="org.chromium.content.app.SanboxedProcessService3"
|
| + android:process=":sandboxed_process3"
|
| + android:permission="org.chromium.content_shell.permission.SANDBOX"
|
| + android:exported="false" />
|
| + <service android:name="org.chromium.content.app.SanboxedProcessService4"
|
| + android:process=":sandboxed_process4"
|
| + android:permission="org.chromium.content_shell.permission.SANDBOX"
|
| + android:exported="false" />
|
| </application>
|
|
|
| <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" />
|
| <uses-permission android:name="android.permission.INTERNET"/>
|
| -</manifest>
|
| +</manifest>
|
|
|