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

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

Issue 2611333002: Android web notifications: Schedule job instead of starting service (N+) (Closed)
Patch Set: Improving comments and other nits Created 3 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 0980a89e95cbf835bd6b63e4d1b37a14c40f6155..59da207c380fc442daa56b130b79798f9253e337 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -773,6 +773,11 @@ by a child template that "extends" this file.
</intent-filter>
</receiver>
+ <!-- Android Notification job service -->
+ <service android:name="org.chromium.chrome.browser.notifications.NotificationJobService"
+ android:exported="false"
+ android:permission="android.permission.BIND_JOB_SERVICE"/>
+
<!-- GcmTaskService implementation to wake Chrome on scheduled events -->
<service android:name="org.chromium.chrome.browser.ChromeBackgroundService"
android:permission="com.google.android.gms.permission.BIND_NETWORK_TASK_SERVICE"

Powered by Google App Engine
This is Rietveld 408576698