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

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

Issue 1699143002: [NTP Snippets] Schedule periodic fetching (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@snippets_feature
Patch Set: 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 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 b6e96a56c2556910ee1c72413a1df980df400b7a..83303525af96d9276b6afda6b87b8e1ee7e8ef25 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -588,6 +588,15 @@ by a child template that "extends" this file.
</intent-filter>
</service>
+ <!-- NTP Snippets GCM scheduler task -->
+ <service android:name="org.chromium.chrome.browser.ntp.snippets.SnippetsLauncherService"
+ android:permission="com.google.android.gms.permission.BIND_NETWORK_TASK_SERVICE"
+ android:exported="true">
+ <intent-filter>
+ <action android:name="com.google.android.gms.gcm.ACTION_TASK_READY" />
+ </intent-filter>
+ </service>
+
<service android:name="org.chromium.chrome.browser.prerender.ChromePrerenderService"
android:exported="true"
tools:ignore="ExportedService" />

Powered by Google App Engine
This is Rietveld 408576698