| 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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 <service android:name="org.chromium.chrome.browser.notifications.Notific
ationService" | 766 <service android:name="org.chromium.chrome.browser.notifications.Notific
ationService" |
| 767 android:exported="false"/> | 767 android:exported="false"/> |
| 768 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi
cationService$Receiver" | 768 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi
cationService$Receiver" |
| 769 android:exported="false"> | 769 android:exported="false"> |
| 770 <intent-filter> | 770 <intent-filter> |
| 771 <action android:name="org.chromium.chrome.browser.notifications.
CLICK_NOTIFICATION" /> | 771 <action android:name="org.chromium.chrome.browser.notifications.
CLICK_NOTIFICATION" /> |
| 772 <action android:name="org.chromium.chrome.browser.notifications.
CLOSE_NOTIFICATION" /> | 772 <action android:name="org.chromium.chrome.browser.notifications.
CLOSE_NOTIFICATION" /> |
| 773 </intent-filter> | 773 </intent-filter> |
| 774 </receiver> | 774 </receiver> |
| 775 | 775 |
| 776 <!-- Android Notification job service --> |
| 777 <service android:name="org.chromium.chrome.browser.notifications.Notific
ationJobService" |
| 778 android:exported="false" |
| 779 android:permission="android.permission.BIND_JOB_SERVICE"/> |
| 780 |
| 776 <!-- GcmTaskService implementation to wake Chrome on scheduled events --
> | 781 <!-- GcmTaskService implementation to wake Chrome on scheduled events --
> |
| 777 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi
ce" | 782 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi
ce" |
| 778 android:permission="com.google.android.gms.permission.BIND_NETWORK_T
ASK_SERVICE" | 783 android:permission="com.google.android.gms.permission.BIND_NETWORK_T
ASK_SERVICE" |
| 779 android:exported="true"> | 784 android:exported="true"> |
| 780 <intent-filter> | 785 <intent-filter> |
| 781 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA
DY" /> | 786 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA
DY" /> |
| 782 </intent-filter> | 787 </intent-filter> |
| 783 </service> | 788 </service> |
| 784 | 789 |
| 785 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere
nderService" | 790 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere
nderService" |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 946 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 942 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 947 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 943 The downstream manifest replaces this block, and hence replaces the
list of media route | 948 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 944 controllers with its own list. --> | 949 controllers with its own list. --> |
| 945 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 950 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 946 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 951 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 947 | 952 |
| 948 {% endblock %} | 953 {% endblock %} |
| 949 </application> | 954 </application> |
| 950 </manifest> | 955 </manifest> |
| OLD | NEW |