Chromium Code Reviews| 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 %} |