OLD | NEW |
---|---|
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 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
597 android:process=":sandboxed_process{{ i }}" | 597 android:process=":sandboxed_process{{ i }}" |
598 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" | 598 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" |
599 android:isolatedProcess="true" | 599 android:isolatedProcess="true" |
600 android:exported="false" /> | 600 android:exported="false" /> |
601 {% endfor %} | 601 {% endfor %} |
602 | 602 |
603 {% set num_privileged_services = 3 %} | 603 {% set num_privileged_services = 3 %} |
604 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" | 604 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" |
605 android:value="{{ num_privileged_services }}"/> | 605 android:value="{{ num_privileged_services }}"/> |
606 {% for i in range(num_privileged_services) %} | 606 {% for i in range(num_privileged_services) %} |
607 {% set privileged_process_name = ':privileged_process%d' % i %} | |
608 <meta-data android:name="{{ manifest_package }}{{ privileged_process_nam e }}.ignore_multidex" | |
Yaron
2015/11/25 19:02:59
nit: omit this for release builds (ok as follow-up
Ted C
2015/11/25 19:14:11
Added a TODO, this looks like it will require addi
| |
609 android:value="true" /> | |
607 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}" | 610 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}" |
608 android:process=":privileged_process{{ i }}" | 611 android:process="{{ privileged_process_name }}" |
609 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" | 612 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" |
610 android:isolatedProcess="false" | 613 android:isolatedProcess="false" |
611 android:exported="false" /> | 614 android:exported="false" /> |
612 {% endfor %} | 615 {% endfor %} |
613 | 616 |
614 <receiver android:name="org.chromium.chrome.browser.download.OpenDownloa dReceiver"> | 617 <receiver android:name="org.chromium.chrome.browser.download.OpenDownloa dReceiver"> |
615 <intent-filter> | 618 <intent-filter> |
616 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO N_CLICKED"/> | 619 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO N_CLICKED"/> |
617 </intent-filter> | 620 </intent-filter> |
618 </receiver> | 621 </receiver> |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
674 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 677 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
675 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. | 678 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. |
676 The downstream manifest replaces this block, and hence replaces the list of media route | 679 The downstream manifest replaces this block, and hence replaces the list of media route |
677 controllers with its own list. --> | 680 controllers with its own list. --> |
678 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 681 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
679 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 682 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
680 | 683 |
681 {% endblock %} | 684 {% endblock %} |
682 </application> | 685 </application> |
683 </manifest> | 686 </manifest> |
OLD | NEW |