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

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

Issue 2690163008: Route through a JobService when receiving a message for the GCM Driver (Closed)
Patch Set: Route through a JobService when receiving a message for the GCM Driver Created 3 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 b5b9a97aa9c4db1357f2f7c05663ec170e94cbf3..95581dd7186d38e52f90dd75b7445bbc63f166a4 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -764,6 +764,11 @@ by a child template that "extends" this file.
android:exported="false"
android:permission="android.permission.BIND_JOB_SERVICE"/>
+ <!-- Android GCM Driver job service -->
+ <service android:name="org.chromium.chrome.browser.services.gcm.GCMJobService"
awdf 2017/02/16 21:26:48 Something I hadn't fully appreciated when creating
Peter Beverloo 2017/02/17 15:43:59 I'm all for that, and am definitely up for some wa
+ 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