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

Side by Side Diff: content/shell/android/shell_apk/AndroidManifest.xml.jinja2

Issue 2863063002: Making ChildConnectionAllocator simpler. (Closed)
Patch Set: Fixed tests. Created 3 years, 7 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 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 (c) 2012 The Chromium Authors. All rights reserved. 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 4
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 8
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.content_shell_apk"> 10 package="org.chromium.content_shell_apk">
(...skipping 24 matching lines...) Expand all
35 </intent-filter> 35 </intent-filter>
36 </activity> 36 </activity>
37 <!-- The following service entries exist in order to allow us to 37 <!-- The following service entries exist in order to allow us to
38 start more than one sandboxed process. --> 38 start more than one sandboxed process. -->
39 39
40 <!-- NOTE: If you change the values of "android:process" for any of the below services, 40 <!-- NOTE: If you change the values of "android:process" for any of the below services,
41 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. --> 41 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. -->
42 {% set num_sandboxed_services = 20 %} 42 {% set num_sandboxed_services = 20 %}
43 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES" 43 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES"
44 android:value="{{ num_sandboxed_services }}"/> 44 android:value="{{ num_sandboxed_services }}"/>
45 <meta-data android:name="org.chromium.content.browser.SANDBOXED_SERVICES _NAME"
46 android:value="org.chromium.content.app.SandboxedProcessServi ce"/>
45 {% for i in range(num_sandboxed_services) %} 47 {% for i in range(num_sandboxed_services) %}
46 <service android:name="org.chromium.content.app.SandboxedProcessService{ { i }}" 48 <service android:name="org.chromium.content.app.SandboxedProcessService{ { i }}"
47 android:process=":sandboxed_process{{ i }}" 49 android:process=":sandboxed_process{{ i }}"
48 android:isolatedProcess="true" 50 android:isolatedProcess="true"
49 android:exported="false" /> 51 android:exported="false" />
50 {% endfor %} 52 {% endfor %}
51 53
52 {% set num_privileged_services = 3 %} 54 {% set num_privileged_services = 3 %}
53 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" 55 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES"
54 android:value="{{ num_privileged_services }}"/> 56 android:value="{{ num_privileged_services }}"/>
57 <meta-data android:name="org.chromium.content.browser.PRIVILEGED_SERVICE S_NAME"
58 android:value="org.chromium.content.app.PrivilegedProcessServ ice"/>
55 {% for i in range(num_privileged_services) %} 59 {% for i in range(num_privileged_services) %}
56 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}" 60 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}"
57 android:process=":privileged_process{{ i }}" 61 android:process=":privileged_process{{ i }}"
58 android:isolatedProcess="false" 62 android:isolatedProcess="false"
59 android:exported="false" /> 63 android:exported="false" />
60 {% endfor %} 64 {% endfor %}
61 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 65 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
62 android:value="org.chromium.content.browser.SmartClipProvider " /> 66 android:value="org.chromium.content.browser.SmartClipProvider " />
63 67
64 <service android:name="org.chromium.content_shell_apk.ChildProcessLaunch erTestHelperService" 68 <service android:name="org.chromium.content_shell_apk.ChildProcessLaunch erTestHelperService"
65 android:process=":ChildProcessLauncherHelper" /> 69 android:process=":ChildProcessLauncherHelper" />
66 </application> 70 </application>
67 </manifest> 71 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698