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

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 2814653003: [Android] BackgroundTaskScheduler reschedule implementation (Closed)
Patch Set: Exposing BackgroundTaskGcmTaskService in AndroidManifest.xml Created 3 years, 8 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 784 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 <!-- Android Notification job service --> 795 <!-- Android Notification job service -->
796 <service android:name="org.chromium.chrome.browser.notifications.Notific ationJobService" 796 <service android:name="org.chromium.chrome.browser.notifications.Notific ationJobService"
797 android:exported="false" 797 android:exported="false"
798 android:permission="android.permission.BIND_JOB_SERVICE"/> 798 android:permission="android.permission.BIND_JOB_SERVICE"/>
799 799
800 <!-- Background Task Scheduler job service --> 800 <!-- Background Task Scheduler job service -->
801 <service android:name="org.chromium.components.background_task_scheduler .BackgroundTaskJobService" 801 <service android:name="org.chromium.components.background_task_scheduler .BackgroundTaskJobService"
802 android:exported="false" 802 android:exported="false"
803 android:permission="android.permission.BIND_JOB_SERVICE"/> 803 android:permission="android.permission.BIND_JOB_SERVICE"/>
804 804
805 <!-- Background Task Scheduler GCM task service -->
806 <service android:name="org.chromium.components.background_task_scheduler .BackgroundTaskGcmTaskService"
807 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE"
808 android:exported="true">
nyquist 2017/04/18 22:33:02 Are there any security measures we should take wit
fgorski 2017/04/20 19:09:58 I am not sure how that would be done. This was tak
809 <intent-filter>
810 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" />
811 </intent-filter>
812 </service>
813
805 <!-- GcmTaskService implementation to wake Chrome on scheduled events -- > 814 <!-- GcmTaskService implementation to wake Chrome on scheduled events -- >
806 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi ce" 815 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi ce"
807 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE" 816 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE"
808 android:exported="true"> 817 android:exported="true">
809 <intent-filter> 818 <intent-filter>
810 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" /> 819 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" />
811 </intent-filter> 820 </intent-filter>
812 </service> 821 </service>
813 822
814 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" 823 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService"
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
973 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 982 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
974 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 983 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
975 The downstream manifest replaces this block, and hence replaces the list of media route 984 The downstream manifest replaces this block, and hence replaces the list of media route
976 controllers with its own list. --> 985 controllers with its own list. -->
977 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 986 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
978 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 987 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
979 988
980 {% endblock %} 989 {% endblock %}
981 </application> 990 </application>
982 </manifest> 991 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698