| 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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 <service android:name="org.chromium.chrome.browser.notifications.Notific
ationService" | 572 <service android:name="org.chromium.chrome.browser.notifications.Notific
ationService" |
| 573 android:exported="false"/> | 573 android:exported="false"/> |
| 574 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi
cationService$Receiver" | 574 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi
cationService$Receiver" |
| 575 android:exported="false"> | 575 android:exported="false"> |
| 576 <intent-filter> | 576 <intent-filter> |
| 577 <action android:name="org.chromium.chrome.browser.notifications.
CLICK_NOTIFICATION" /> | 577 <action android:name="org.chromium.chrome.browser.notifications.
CLICK_NOTIFICATION" /> |
| 578 <action android:name="org.chromium.chrome.browser.notifications.
CLOSE_NOTIFICATION" /> | 578 <action android:name="org.chromium.chrome.browser.notifications.
CLOSE_NOTIFICATION" /> |
| 579 </intent-filter> | 579 </intent-filter> |
| 580 </receiver> | 580 </receiver> |
| 581 | 581 |
| 582 <!-- Service Worker Background Sync GCM scheduler task --> | 582 <!-- GcmTaskService implementation to wake Chrome on scheduled events --
> |
| 583 <service android:name="org.chromium.chrome.browser.BackgroundSyncLaunche
rService" | 583 <service android:name="org.chromium.chrome.browser.ChromeBackgroundServi
ce" |
| 584 android:permission="com.google.android.gms.permission.BIND_NETWORK_T
ASK_SERVICE" | 584 android:permission="com.google.android.gms.permission.BIND_NETWORK_T
ASK_SERVICE" |
| 585 android:exported="true"> | 585 android:exported="true"> |
| 586 <intent-filter> | 586 <intent-filter> |
| 587 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA
DY" /> | 587 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA
DY" /> |
| 588 </intent-filter> | 588 </intent-filter> |
| 589 </service> | 589 </service> |
| 590 | 590 |
| 591 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere
nderService" | 591 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere
nderService" |
| 592 android:exported="true" | 592 android:exported="true" |
| 593 tools:ignore="ExportedService" /> | 593 tools:ignore="ExportedService" /> |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 724 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 725 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 725 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 726 The downstream manifest replaces this block, and hence replaces the
list of media route | 726 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 727 controllers with its own list. --> | 727 controllers with its own list. --> |
| 728 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 728 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 729 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 729 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 730 | 730 |
| 731 {% endblock %} | 731 {% endblock %} |
| 732 </application> | 732 </application> |
| 733 </manifest> | 733 </manifest> |
| OLD | NEW |