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

Unified Diff: chrome/android/java/AndroidManifest.xml

Issue 2863063002: Making ChildConnectionAllocator simpler. (Closed)
Patch Set: Fixed tests. Created 3 years, 7 months 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: chrome/android/java/AndroidManifest.xml
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
index e3038248458f177bdff49bdb02d9fef514e4efc8..2cece3a8cd26ebbb1c42910cde13f20a83744658 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -855,6 +855,9 @@ by a child template that "extends" this file.
{% set num_sandboxed_services = 20 %}
<meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES"
android:value="{{ num_sandboxed_services }}"/>
+ <meta-data android:name="org.chromium.content.browser.SANDBOXED_SERVICES_NAME"
+ android:value="org.chromium.content.app.SandboxedProcessService"/>
+
{% for i in range(num_sandboxed_services) %}
<service android:name="org.chromium.content.app.SandboxedProcessService{{ i }}"
android:process=":sandboxed_process{{ i }}"
@@ -871,6 +874,9 @@ by a child template that "extends" this file.
{% set num_privileged_services = 3 %}
<meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICES"
android:value="{{ num_privileged_services }}"/>
+ <meta-data android:name="org.chromium.content.browser.PRIVILEGED_SERVICES_NAME"
+ android:value="org.chromium.content.app.PrivilegedProcessService"/>
+
{% for i in range(num_privileged_services) %}
{% set privileged_process_name = ':privileged_process%d' % i %}
<!-- TODO(tedchoc): Omit this for release builds as MultiDex is debug only. -->

Powered by Google App Engine
This is Rietveld 408576698