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

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

Issue 1635143002: android: Add template to export sandboxed service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: conditional tools:ignore Created 4 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/AndroidManifest.xml
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
index e06efab5062162208581e3077aaba24c49a7e6f1..28859e93a51ff2a154dfc5ec0122757cfa76e43f 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -624,7 +624,11 @@ by a child template that "extends" this file.
android:process=":sandboxed_process{{ i }}"
android:permission="{{ manifest_package }}.permission.CHILD_SERVICE"
android:isolatedProcess="true"
- android:exported="false" />
+ android:exported="{{sandboxed_service_exported|default(false)}}"
+ {% if sandboxed_service_exported == 'true' %}
mnaganov (inactive) 2016/01/26 19:45:20 Argh. You probably need to repeat the 'default' ex
boliu 2016/01/26 21:03:48 doh!
+ tools:ignore="ExportedService"
+ {% endif %}
+ {{sandboxed_service_extra_flags|default('')}} />
{% endfor %}
{% set num_privileged_services = 3 %}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698