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

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

Issue 1622743005: Introduce background Download process to android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn build Created 4 years, 10 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
« no previous file with comments | « no previous file | content/app/BUILD.gn » ('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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 <!-- TODO(tedchoc): Omit this for release builds as MultiDex is debug on ly. --> 642 <!-- TODO(tedchoc): Omit this for release builds as MultiDex is debug on ly. -->
643 <meta-data android:name="{{ manifest_package }}{{ privileged_process_nam e }}.ignore_multidex" 643 <meta-data android:name="{{ manifest_package }}{{ privileged_process_nam e }}.ignore_multidex"
644 android:value="true" /> 644 android:value="true" />
645 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}" 645 <service android:name="org.chromium.content.app.PrivilegedProcessService {{ i }}"
646 android:process="{{ privileged_process_name }}" 646 android:process="{{ privileged_process_name }}"
647 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE" 647 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE"
648 android:isolatedProcess="false" 648 android:isolatedProcess="false"
649 android:exported="false" /> 649 android:exported="false" />
650 {% endfor %} 650 {% endfor %}
651 651
652 <!-- Background download process, it may outlive chrome if download does not finish
653 when user kills chrome. Once created, the process will manage its o wn lifecycle.
654 To work around an issue in earlier android versions that a bound se rvice will
655 get killed when chrome goes away, this service will only communicat e with the
656 browser process through callbacks. -->
657 <service android:name="org.chromium.content.app.DownloadProcessService"
658 android:process=":download"
659 android:permission="{{ manifest_package }}.permission.CHILD_SERVICE"
660 android:isolatedProcess="false"
661 android:exported="false"/>
662
652 <receiver android:name="org.chromium.chrome.browser.download.DownloadBro adcastReceiver" 663 <receiver android:name="org.chromium.chrome.browser.download.DownloadBro adcastReceiver"
653 android:exported="false"> 664 android:exported="false">
654 <intent-filter> 665 <intent-filter>
655 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO N_CLICKED"/> 666 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO N_CLICKED"/>
656 </intent-filter> 667 </intent-filter>
657 </receiver> 668 </receiver>
658 669
659 <receiver android:name="org.chromium.base.PowerStatusReceiver"> 670 <receiver android:name="org.chromium.base.PowerStatusReceiver">
660 <intent-filter> 671 <intent-filter>
661 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/> 672 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/>
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 724 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
714 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 725 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
715 The downstream manifest replaces this block, and hence replaces the list of media route 726 The downstream manifest replaces this block, and hence replaces the list of media route
716 controllers with its own list. --> 727 controllers with its own list. -->
717 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 728 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
718 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 729 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
719 730
720 {% endblock %} 731 {% endblock %}
721 </application> 732 </application>
722 </manifest> 733 </manifest>
OLDNEW
« no previous file with comments | « no previous file | content/app/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698