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

Side by Side Diff: chromecast/browser/android/apk/AndroidManifest.xml.jinja2

Issue 2555303004: android: Increase NUM_PRIVILEGED_SERVICES to 20 (Closed)
Patch Set: sed Created 4 years 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 unified diff | Download patch
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « chrome/android/java/AndroidManifest.xml ('k') | components/test/android/browsertests_apk/AndroidManifest.xml.jinja2 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698