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

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

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
« no previous file with comments | « no previous file | chromecast/browser/android/apk/AndroidManifest.xml.jinja2 » ('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 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <!-- 6 <!--
7 Note: This is a jinja2 template, processed at build time into the final manifest . 7 Note: This is a jinja2 template, processed at build time into the final manifest .
8 8
9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden
10 by a child template that "extends" this file. 10 by a child template that "extends" this file.
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 android:process=":sandboxed_process{{ i }}" 840 android:process=":sandboxed_process{{ i }}"
841 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" 841 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE"
842 android:isolatedProcess="true" 842 android:isolatedProcess="true"
843 android:exported="{{sandboxed_service_exported|default(false)}}" 843 android:exported="{{sandboxed_service_exported|default(false)}}"
844 {% if (sandboxed_service_exported|default(false)) == 'true' %} 844 {% if (sandboxed_service_exported|default(false)) == 'true' %}
845 tools:ignore="ExportedService" 845 tools:ignore="ExportedService"
846 {% endif %} 846 {% endif %}
847 {{sandboxed_service_extra_flags|default('')}} /> 847 {{sandboxed_service_extra_flags|default('')}} />
848 {% endfor %} 848 {% endfor %}
849 849
850 {% set num_privileged_services = 3 %} 850 {% set num_privileged_services = 20 %}
851 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" 851 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES"
852 android:value="{{ num_privileged_services }}"/> 852 android:value="{{ num_privileged_services }}"/>
853 {% for i in range(num_privileged_services) %} 853 {% for i in range(num_privileged_services) %}
854 {% set privileged_process_name = ':privileged_process%d' % i %} 854 {% set privileged_process_name = ':privileged_process%d' % i %}
855 <!-- TODO(tedchoc): Omit this for release builds as MultiDex is debug on ly. --> 855 <!-- TODO(tedchoc): Omit this for release builds as MultiDex is debug on ly. -->
856 <meta-data android:name="{{ manifest_package }}{{ privileged_process_nam e }}.ignore_multidex" 856 <meta-data android:name="{{ manifest_package }}{{ privileged_process_nam e }}.ignore_multidex"
857 android:value="true" /> 857 android:value="true" />
858 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}" 858 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}"
859 android:process="{{ privileged_process_name }}" 859 android:process="{{ privileged_process_name }}"
860 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" 860 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
963 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 963 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
964 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 964 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
965 The downstream manifest replaces this block, and hence replaces the list of media route 965 The downstream manifest replaces this block, and hence replaces the list of media route
966 controllers with its own list. --> 966 controllers with its own list. -->
967 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 967 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
968 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 968 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
969 969
970 {% endblock %} 970 {% endblock %}
971 </application> 971 </application>
972 </manifest> 972 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chromecast/browser/android/apk/AndroidManifest.xml.jinja2 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698