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

Unified Diff: components/devtools_bridge/android/client/javatests/AndroidManifest.xml

Issue 746663002: Stub for WebRTCDeviceProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@webclient
Patch Set: Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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"

Powered by Google App Engine
This is Rietveld 408576698