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

Unified 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: addressing comments Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/AndroidManifest.xml
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
index b21f383843ea300c1ff7495f9142b1e2034eedb8..da4c6224a4f3d38d0deebdd3378130b51c3af0f3 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -642,6 +642,13 @@ android:value="true" />
android:exported="false" />
{% endfor %}
+ <!-- Background download process, it may outlive chrome if download does not finish
+ when user kills chrome -->
+ <service android:name="org.chromium.content.app.DownloadProcessService"
+ android:process=":download"
+ android:permission="{{ manifest_package }}.permission.CHILD_SERVICE"
+ android:exported="false"/>
+
<receiver android:name="org.chromium.chrome.browser.download.DownloadBroadcastReceiver"
android:exported="false">
<intent-filter>
« no previous file with comments | « no previous file | content/app/android/download_main.cc » ('j') | content/browser/android/download_process_host.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698