Index: components/devtools_bridge/android/client/javatests/AndroidManifest.xml |
diff --git a/components/devtools_bridge/android/client/javatests/AndroidManifest.xml b/components/devtools_bridge/android/client/javatests/AndroidManifest.xml |
index 4ce7a2e0f5a0ff39ec19d4e7df874724cb8acd26..c2662785e964bdc86434b758a433d6649c31057c 100644 |
--- a/components/devtools_bridge/android/client/javatests/AndroidManifest.xml |
+++ b/components/devtools_bridge/android/client/javatests/AndroidManifest.xml |
@@ -9,6 +9,9 @@ |
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> |
+ <permission android:name="org.chromium.components.devtools_bridge.permission.SANDBOX" |
+ android:protectionLevel="signature" /> |
+ |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> |
<uses-permission android:name="android.permission.CAMERA" /> |
@@ -27,6 +30,31 @@ |
<application android:name=".TestApplication" |
android:debuggable="true"> |
<uses-library android:name="android.test.runner" /> |
+ <!-- The following service entries exist in order to allow us to |
+ start more than one sandboxed process. --> |
+ |
+ <!-- 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.SandboxedProcessService0" |
+ android:process=":sandboxed_process0" |
+ android:permission="org.chromium.components.devtools_bridge.permission.SANDBOX" |
+ android:isolatedProcess="true" |
+ android:exported="false" /> |
+ <service android:name="org.chromium.content.app.SandboxedProcessService1" |
+ android:process=":sandboxed_process1" |
+ android:permission="org.chromium.components.devtools_bridge.permission.SANDBOX" |
+ android:isolatedProcess="true" |
+ android:exported="false" /> |
+ <service android:name="org.chromium.content.app.SandboxedProcessService2" |
+ android:process=":sandboxed_process2" |
+ android:permission="org.chromium.components.devtools_bridge.permission.SANDBOX" |
+ android:isolatedProcess="true" |
+ android:exported="false" /> |
+ <service android:name="org.chromium.content.app.SandboxedProcessService3" |
+ android:process=":sandboxed_process3" |
+ android:permission="org.chromium.components.devtools_bridge.permission.SANDBOX" |
+ android:isolatedProcess="true" |
+ android:exported="false" /> |
</application> |
<instrumentation android:name="android.test.InstrumentationTestRunner" |