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

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

Issue 2714463002: [android] Add JobScheduler-based BackgroundTaskScheduler. (Closed)
Patch Set: FindBugs wants the real Pi, but I won't give it. Created 3 years, 9 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
« no previous file with comments | « chrome/android/BUILD.gn ('k') | components/background_task_scheduler/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 763 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" /> 774 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" />
775 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" /> 775 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" />
776 </intent-filter> 776 </intent-filter>
777 </receiver> 777 </receiver>
778 778
779 <!-- Android Notification job service --> 779 <!-- Android Notification job service -->
780 <service android:name="org.chromium.chrome.browser.notifications.Notific ationJobService" 780 <service android:name="org.chromium.chrome.browser.notifications.Notific ationJobService"
781 android:exported="false" 781 android:exported="false"
782 android:permission="android.permission.BIND_JOB_SERVICE"/> 782 android:permission="android.permission.BIND_JOB_SERVICE"/>
783 783
784 <!-- Background Task Scheduler job service -->
785 <service android:name="org.chromium.components.background_task_scheduler .BackgroundTaskJobService"
786 android:exported="false"
787 android:permission="android.permission.BIND_JOB_SERVICE"/>
788
784 <!-- GcmTaskService implementation to wake Chrome on scheduled events -- > 789 <!-- GcmTaskService implementation to wake Chrome on scheduled events -- >
785 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi ce" 790 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi ce"
786 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE" 791 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE"
787 android:exported="true"> 792 android:exported="true">
788 <intent-filter> 793 <intent-filter>
789 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" /> 794 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" />
790 </intent-filter> 795 </intent-filter>
791 </service> 796 </service>
792 797
793 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" 798 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService"
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
950 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 955 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
951 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 956 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
952 The downstream manifest replaces this block, and hence replaces the list of media route 957 The downstream manifest replaces this block, and hence replaces the list of media route
953 controllers with its own list. --> 958 controllers with its own list. -->
954 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 959 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
955 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 960 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
956 961
957 {% endblock %} 962 {% endblock %}
958 </application> 963 </application>
959 </manifest> 964 </manifest>
OLDNEW
« no previous file with comments | « chrome/android/BUILD.gn ('k') | components/background_task_scheduler/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698