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

Unified Diff: chrome/android/java/AndroidManifest.xml

Issue 1751183002: Precache uses GcmNetworkManager for task scheduling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments and fixed tests Created 4 years, 9 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeBackgroundService.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/AndroidManifest.xml
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
index 4691aacedb5086238056397d868173a07c73a2bb..5b12a2d850fc746680e800d0e9c84f27c79e6ffc 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -474,13 +474,9 @@ by a child template that "extends" this file.
to some process churn, so omit them while not relevant. b/24776372
-->
{% if channel in ['default', 'canary', 'dev', 'beta'] %}
- <service android:name="org.chromium.chrome.browser.precache.PrecacheService"
- android:exported="false" />
- <receiver android:name="org.chromium.chrome.browser.precache.PrecacheServiceLauncher">
+ <receiver android:name="org.chromium.chrome.browser.precache.PrecacheBootReceiver">
<intent-filter>
- <action android:name="android.intent.action.ACTION_POWER_CONNECTED"/>
- <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED"/>
- <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
+ <action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
{% endif %}
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeBackgroundService.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698