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

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

Issue 1469803007: Extend the multidex logic to only kick in for the main browser application. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 5 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: chrome/android/java/AndroidManifest.xml
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
index 30c1bf0b61e9177bca149927e38878ef4b05fd69..79170b67f13bee4e135cac752134eacb596749ae 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -604,8 +604,12 @@ by a child template that "extends" this file.
<meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICES"
android:value="{{ num_privileged_services }}"/>
{% 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. -->
+ <meta-data android:name="{{ manifest_package }}{{ privileged_process_name }}.ignore_multidex"
+android:value="true" />
<service android:name="org.chromium.content.app.PrivilegedProcessService{{ i }}"
- android:process=":privileged_process{{ i }}"
+ android:process="{{ privileged_process_name }}"
android:permission="{{ manifest_package }}.permission.CHILD_SERVICE"
android:isolatedProcess="false"
android:exported="false" />

Powered by Google App Engine
This is Rietveld 408576698