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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 <!-- TODO(tedchoc): Omit this for release builds as MultiDex is debug on
ly. --> | 635 <!-- TODO(tedchoc): Omit this for release builds as MultiDex is debug on
ly. --> |
636 <meta-data android:name="{{ manifest_package }}{{ privileged_process_nam
e }}.ignore_multidex" | 636 <meta-data android:name="{{ manifest_package }}{{ privileged_process_nam
e }}.ignore_multidex" |
637 android:value="true" /> | 637 android:value="true" /> |
638 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" | 638 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" |
639 android:process="{{ privileged_process_name }}" | 639 android:process="{{ privileged_process_name }}" |
640 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" | 640 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" |
641 android:isolatedProcess="false" | 641 android:isolatedProcess="false" |
642 android:exported="false" /> | 642 android:exported="false" /> |
643 {% endfor %} | 643 {% endfor %} |
644 | 644 |
| 645 <!-- Background download process, it may outlive chrome if download does
not finish |
| 646 when user kills chrome. Once created, the process will manage its o
wn lifecycle. |
| 647 To work around an issue in earlier android versions that a bound se
rvice will |
| 648 get killed when chrome goes away, this service will only communicat
e with the |
| 649 browser process through callbacks. --> |
| 650 <service android:name="org.chromium.content.app.DownloadProcessService" |
| 651 android:process=":download" |
| 652 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" |
| 653 android:isolatedProcess="false" |
| 654 android:exported="false"/> |
| 655 |
645 <receiver android:name="org.chromium.chrome.browser.download.DownloadBro
adcastReceiver" | 656 <receiver android:name="org.chromium.chrome.browser.download.DownloadBro
adcastReceiver" |
646 android:exported="false"> | 657 android:exported="false"> |
647 <intent-filter> | 658 <intent-filter> |
648 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO
N_CLICKED"/> | 659 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO
N_CLICKED"/> |
649 </intent-filter> | 660 </intent-filter> |
650 </receiver> | 661 </receiver> |
651 | 662 |
652 <receiver android:name="org.chromium.base.PowerStatusReceiver"> | 663 <receiver android:name="org.chromium.base.PowerStatusReceiver"> |
653 <intent-filter> | 664 <intent-filter> |
654 <action android:name="android.intent.action.ACTION_POWER_CONNECT
ED"/> | 665 <action android:name="android.intent.action.ACTION_POWER_CONNECT
ED"/> |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 717 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
707 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 718 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
708 The downstream manifest replaces this block, and hence replaces the
list of media route | 719 The downstream manifest replaces this block, and hence replaces the
list of media route |
709 controllers with its own list. --> | 720 controllers with its own list. --> |
710 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 721 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
711 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 722 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
712 | 723 |
713 {% endblock %} | 724 {% endblock %} |
714 </application> | 725 </application> |
715 </manifest> | 726 </manifest> |
OLD | NEW |