| OLD | NEW |
| 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 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 807 <!-- Android Notification job service --> | 807 <!-- Android Notification job service --> |
| 808 <service android:name="org.chromium.chrome.browser.notifications.Notific
ationJobService" | 808 <service android:name="org.chromium.chrome.browser.notifications.Notific
ationJobService" |
| 809 android:exported="false" | 809 android:exported="false" |
| 810 android:permission="android.permission.BIND_JOB_SERVICE"/> | 810 android:permission="android.permission.BIND_JOB_SERVICE"/> |
| 811 | 811 |
| 812 <!-- Background Task Scheduler job service --> | 812 <!-- Background Task Scheduler job service --> |
| 813 <service android:name="org.chromium.components.background_task_scheduler
.BackgroundTaskJobService" | 813 <service android:name="org.chromium.components.background_task_scheduler
.BackgroundTaskJobService" |
| 814 android:exported="false" | 814 android:exported="false" |
| 815 android:permission="android.permission.BIND_JOB_SERVICE"/> | 815 android:permission="android.permission.BIND_JOB_SERVICE"/> |
| 816 | 816 |
| 817 <!-- Background Task Scheduler GCM task service --> |
| 818 <service android:name="org.chromium.components.background_task_scheduler
.BackgroundTaskGcmTaskService" |
| 819 android:permission="com.google.android.gms.permission.BIND_NETWORK_T
ASK_SERVICE" |
| 820 android:exported="true"> |
| 821 <intent-filter> |
| 822 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA
DY" /> |
| 823 </intent-filter> |
| 824 </service> |
| 825 |
| 817 <!-- GcmTaskService implementation to wake Chrome on scheduled events --
> | 826 <!-- GcmTaskService implementation to wake Chrome on scheduled events --
> |
| 818 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi
ce" | 827 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi
ce" |
| 819 android:permission="com.google.android.gms.permission.BIND_NETWORK_T
ASK_SERVICE" | 828 android:permission="com.google.android.gms.permission.BIND_NETWORK_T
ASK_SERVICE" |
| 820 android:exported="true"> | 829 android:exported="true"> |
| 821 <intent-filter> | 830 <intent-filter> |
| 822 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA
DY" /> | 831 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA
DY" /> |
| 823 </intent-filter> | 832 </intent-filter> |
| 824 </service> | 833 </service> |
| 825 | 834 |
| 826 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere
nderService" | 835 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere
nderService" |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 1000 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 992 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 1001 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 993 The downstream manifest replaces this block, and hence replaces the
list of media route | 1002 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 994 controllers with its own list. --> | 1003 controllers with its own list. --> |
| 995 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 1004 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 996 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 1005 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 997 | 1006 |
| 998 {% endblock %} | 1007 {% endblock %} |
| 999 </application> | 1008 </application> |
| 1000 </manifest> | 1009 </manifest> |
| OLD | NEW |