OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
9 package="org.chromium.chromecast.shell"> | 9 package="org.chromium.chromecast.shell"> |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... |
37 {% set num_sandboxed_services = 20 %} | 37 {% set num_sandboxed_services = 20 %} |
38 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" | 38 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" |
39 android:value="{{ num_sandboxed_services }}"/> | 39 android:value="{{ num_sandboxed_services }}"/> |
40 {% for i in range(num_sandboxed_services) %} | 40 {% for i in range(num_sandboxed_services) %} |
41 <service android:name="org.chromium.content.app.SandboxedProcessService{
{ i }}" | 41 <service android:name="org.chromium.content.app.SandboxedProcessService{
{ i }}" |
42 android:process=":sandboxed_process{{ i }}" | 42 android:process=":sandboxed_process{{ i }}" |
43 android:isolatedProcess="true" | 43 android:isolatedProcess="true" |
44 android:exported="false" /> | 44 android:exported="false" /> |
45 {% endfor %} | 45 {% endfor %} |
46 | 46 |
47 {% set num_privileged_services = 3 %} | 47 {% set num_privileged_services = 20 %} |
48 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" | 48 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" |
49 android:value="{{ num_privileged_services }}"/> | 49 android:value="{{ num_privileged_services }}"/> |
50 {% for i in range(num_privileged_services) %} | 50 {% for i in range(num_privileged_services) %} |
51 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" | 51 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" |
52 android:process=":privileged_process{{ i }}" | 52 android:process=":privileged_process{{ i }}" |
53 android:isolatedProcess="false" | 53 android:isolatedProcess="false" |
54 android:exported="false" /> | 54 android:exported="false" /> |
55 {% endfor %} | 55 {% endfor %} |
56 </application> | 56 </application> |
57 | 57 |
58 </manifest> | 58 </manifest> |
OLD | NEW |