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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 <!-- TODO(tedchoc): Omit this for release builds as MultiDex is debug on
ly. --> | 790 <!-- TODO(tedchoc): Omit this for release builds as MultiDex is debug on
ly. --> |
791 <meta-data android:name="{{ manifest_package }}{{ privileged_process_nam
e }}.ignore_multidex" | 791 <meta-data android:name="{{ manifest_package }}{{ privileged_process_nam
e }}.ignore_multidex" |
792 android:value="true" /> | 792 android:value="true" /> |
793 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" | 793 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" |
794 android:process="{{ privileged_process_name }}" | 794 android:process="{{ privileged_process_name }}" |
795 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" | 795 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" |
796 android:isolatedProcess="false" | 796 android:isolatedProcess="false" |
797 android:exported="false" /> | 797 android:exported="false" /> |
798 {% endfor %} | 798 {% endfor %} |
799 | 799 |
800 <!-- Background download process, it may outlive chrome if download does
not finish | |
801 when user kills chrome. Once created, the process will manage its o
wn lifecycle. | |
802 To work around an issue in earlier android versions that a bound se
rvice will | |
803 get killed when chrome goes away, this service will only communicat
e with the | |
804 browser process through callbacks. --> | |
805 <service android:name="org.chromium.content.app.DownloadProcessService" | |
806 android:process=":download" | |
807 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" | |
808 android:isolatedProcess="false" | |
809 android:exported="false"/> | |
810 | |
811 <receiver android:name="org.chromium.chrome.browser.download.DownloadBro
adcastReceiver" | 800 <receiver android:name="org.chromium.chrome.browser.download.DownloadBro
adcastReceiver" |
812 android:exported="false"> | 801 android:exported="false"> |
813 <intent-filter> | 802 <intent-filter> |
814 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO
N_CLICKED"/> | 803 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO
N_CLICKED"/> |
815 </intent-filter> | 804 </intent-filter> |
816 </receiver> | 805 </receiver> |
817 | 806 |
818 <receiver android:name="org.chromium.base.PowerStatusReceiver"> | 807 <receiver android:name="org.chromium.base.PowerStatusReceiver"> |
819 <intent-filter> | 808 <intent-filter> |
820 <action android:name="android.intent.action.ACTION_POWER_CONNECT
ED"/> | 809 <action android:name="android.intent.action.ACTION_POWER_CONNECT
ED"/> |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
909 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 898 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
910 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 899 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
911 The downstream manifest replaces this block, and hence replaces the
list of media route | 900 The downstream manifest replaces this block, and hence replaces the
list of media route |
912 controllers with its own list. --> | 901 controllers with its own list. --> |
913 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 902 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
914 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 903 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
915 | 904 |
916 {% endblock %} | 905 {% endblock %} |
917 </application> | 906 </application> |
918 </manifest> | 907 </manifest> |
OLD | NEW |