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

Side by Side Diff: chrome/android/shell/java/AndroidManifest.xml

Issue 356043002: Declare 20 renderer services on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move raising the limit to a separate patch (going the 3-way patch way). Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/app/SandboxedProcessService13.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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.chrome.shell"> 10 package="org.chromium.chrome.shell">
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 <service android:name="org.chromium.content.app.SandboxedProcessService1 1" 115 <service android:name="org.chromium.content.app.SandboxedProcessService1 1"
116 android:process=":sandboxed_process11" 116 android:process=":sandboxed_process11"
117 android:permission="org.chromium.content_shell.permission.SANDB OX" 117 android:permission="org.chromium.content_shell.permission.SANDB OX"
118 android:isolatedProcess="true" 118 android:isolatedProcess="true"
119 android:exported="false" /> 119 android:exported="false" />
120 <service android:name="org.chromium.content.app.SandboxedProcessService1 2" 120 <service android:name="org.chromium.content.app.SandboxedProcessService1 2"
121 android:process=":sandboxed_process12" 121 android:process=":sandboxed_process12"
122 android:permission="org.chromium.content_shell.permission.SANDB OX" 122 android:permission="org.chromium.content_shell.permission.SANDB OX"
123 android:isolatedProcess="true" 123 android:isolatedProcess="true"
124 android:exported="false" /> 124 android:exported="false" />
125 <service android:name="org.chromium.content.app.SandboxedProcessService1 3"
126 android:process=":sandboxed_process13"
127 android:permission="org.chromium.content_shell.permission.SANDB OX"
128 android:isolatedProcess="true"
129 android:exported="false" />
130 <service android:name="org.chromium.content.app.SandboxedProcessService1 4"
131 android:process=":sandboxed_process14"
132 android:permission="org.chromium.content_shell.permission.SANDB OX"
133 android:isolatedProcess="true"
134 android:exported="false" />
135 <service android:name="org.chromium.content.app.SandboxedProcessService1 5"
136 android:process=":sandboxed_process15"
137 android:permission="org.chromium.content_shell.permission.SANDB OX"
138 android:isolatedProcess="true"
139 android:exported="false" />
140 <service android:name="org.chromium.content.app.SandboxedProcessService1 6"
141 android:process=":sandboxed_process16"
142 android:permission="org.chromium.content_shell.permission.SANDB OX"
143 android:isolatedProcess="true"
144 android:exported="false" />
145 <service android:name="org.chromium.content.app.SandboxedProcessService1 7"
146 android:process=":sandboxed_process17"
147 android:permission="org.chromium.content_shell.permission.SANDB OX"
148 android:isolatedProcess="true"
149 android:exported="false" />
150 <service android:name="org.chromium.content.app.SandboxedProcessService1 8"
151 android:process=":sandboxed_process18"
152 android:permission="org.chromium.content_shell.permission.SANDB OX"
153 android:isolatedProcess="true"
154 android:exported="false" />
155 <service android:name="org.chromium.content.app.SandboxedProcessService1 9"
156 android:process=":sandboxed_process19"
157 android:permission="org.chromium.content_shell.permission.SANDB OX"
158 android:isolatedProcess="true"
159 android:exported="false" />
125 160
126 <!-- Receiver for GCM messages. Rebroadcasts them locally for sync. --> 161 <!-- Receiver for GCM messages. Rebroadcasts them locally for sync. -->
127 <receiver android:exported="true" 162 <receiver android:exported="true"
128 android:name="com.google.ipc.invalidation.external.client.cont rib.MultiplexingGcmListener$GCMReceiver" 163 android:name="com.google.ipc.invalidation.external.client.cont rib.MultiplexingGcmListener$GCMReceiver"
129 android:permission="com.google.android.c2dm.permission.SEND"> 164 android:permission="com.google.android.c2dm.permission.SEND">
130 <intent-filter> 165 <intent-filter>
131 <action android:name="com.google.android.c2dm.intent.RECEIVE" /> 166 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
132 <action android:name="com.google.android.c2dm.intent.REGISTRATIO N" /> 167 <action android:name="com.google.android.c2dm.intent.REGISTRATIO N" />
133 <category android:name="org.chromium.chrome.shell"/> 168 <category android:name="org.chromium.chrome.shell"/>
134 </intent-filter> 169 </intent-filter>
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 </service> 228 </service>
194 229
195 <!-- Broadcast receiver that will be notified of account changes. --> 230 <!-- Broadcast receiver that will be notified of account changes. -->
196 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver"> 231 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver">
197 <intent-filter> 232 <intent-filter>
198 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / > 233 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / >
199 </intent-filter> 234 </intent-filter>
200 </receiver> 235 </receiver>
201 </application> 236 </application>
202 </manifest> 237 </manifest>
OLDNEW
« no previous file with comments | « no previous file | content/public/android/java/src/org/chromium/content/app/SandboxedProcessService13.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698