| Index: content/shell/android/AndroidManifest.xml
|
| diff --git a/content/shell/android/AndroidManifest.xml b/content/shell/android/AndroidManifest.xml
|
| index c50aa0bdfe80d0076ee6eb1a17dc30bf4c17a159..9343c45fe2ff7e040a6a0839c335b97c1dd38ae9 100644
|
| --- a/content/shell/android/AndroidManifest.xml
|
| +++ b/content/shell/android/AndroidManifest.xml
|
| @@ -24,9 +24,31 @@
|
| <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"/>
|
| <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
| -</manifest>
|
| +</manifest>
|
|
|