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

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: 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..bc53a92b391bcbde3cdac28767dbea7a91ff4702 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -624,7 +624,9 @@ 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)}}"
+ tools:ignore="ExportedService"
mnaganov (inactive) 2016/01/26 18:25:50 I guess this is only needed when the service is ex
Robert Sesek 2016/01/26 18:30:39 It would be bad if android:exported="true" and and
boliu 2016/01/26 18:58:03 Couldn't figure out how to do jinja var with space
+ {{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