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

Side by Side 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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <!-- 6 <!--
7 Note: This is a jinja2 template, processed at build time into the final manifest . 7 Note: This is a jinja2 template, processed at build time into the final manifest .
8 8
9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden
10 by a child template that "extends" this file. 10 by a child template that "extends" this file.
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" /> 757 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" />
758 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" /> 758 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" />
759 </intent-filter> 759 </intent-filter>
760 </receiver> 760 </receiver>
761 761
762 <!-- Android Notification job service --> 762 <!-- Android Notification job service -->
763 <service android:name="org.chromium.chrome.browser.notifications.Notific ationJobService" 763 <service android:name="org.chromium.chrome.browser.notifications.Notific ationJobService"
764 android:exported="false" 764 android:exported="false"
765 android:permission="android.permission.BIND_JOB_SERVICE"/> 765 android:permission="android.permission.BIND_JOB_SERVICE"/>
766 766
767 <!-- Android GCM Driver job service -->
768 <service android:name="org.chromium.chrome.browser.services.gcm.GCMJobSe rvice"
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
769 android:exported="false"
770 android:permission="android.permission.BIND_JOB_SERVICE"/>
771
767 <!-- GcmTaskService implementation to wake Chrome on scheduled events -- > 772 <!-- GcmTaskService implementation to wake Chrome on scheduled events -- >
768 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi ce" 773 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi ce"
769 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE" 774 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE"
770 android:exported="true"> 775 android:exported="true">
771 <intent-filter> 776 <intent-filter>
772 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" /> 777 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" />
773 </intent-filter> 778 </intent-filter>
774 </service> 779 </service>
775 780
776 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" 781 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService"
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
933 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 938 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
934 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 939 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
935 The downstream manifest replaces this block, and hence replaces the list of media route 940 The downstream manifest replaces this block, and hence replaces the list of media route
936 controllers with its own list. --> 941 controllers with its own list. -->
937 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 942 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
938 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 943 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
939 944
940 {% endblock %} 945 {% endblock %}
941 </application> 946 </application>
942 </manifest> 947 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698