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 851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
862 android:exported="false" /> | 862 android:exported="false" /> |
863 {% endfor %} | 863 {% endfor %} |
864 | 864 |
865 <receiver android:name="org.chromium.chrome.browser.download.DownloadBro
adcastReceiver" | 865 <receiver android:name="org.chromium.chrome.browser.download.DownloadBro
adcastReceiver" |
866 android:exported="false"> | 866 android:exported="false"> |
867 <intent-filter> | 867 <intent-filter> |
868 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO
N_CLICKED"/> | 868 <action android:name="android.intent.action.DOWNLOAD_NOTIFICATIO
N_CLICKED"/> |
869 </intent-filter> | 869 </intent-filter> |
870 </receiver> | 870 </receiver> |
871 | 871 |
| 872 <receiver android:name="org.chromium.chrome.browser.ntp.ContentSuggestio
nsNotificationHelper$TimeoutReceiver" |
| 873 android:exported="false"/> |
| 874 |
872 <receiver android:name="org.chromium.base.PowerStatusReceiver"> | 875 <receiver android:name="org.chromium.base.PowerStatusReceiver"> |
873 <intent-filter> | 876 <intent-filter> |
874 <action android:name="android.intent.action.ACTION_POWER_CONNECT
ED"/> | 877 <action android:name="android.intent.action.ACTION_POWER_CONNECT
ED"/> |
875 <action android:name="android.intent.action.ACTION_POWER_DISCONN
ECTED"/> | 878 <action android:name="android.intent.action.ACTION_POWER_DISCONN
ECTED"/> |
876 </intent-filter> | 879 </intent-filter> |
877 </receiver> | 880 </receiver> |
878 | 881 |
879 <service android:name="org.chromium.chrome.browser.media.MediaCaptureNot
ificationService" | 882 <service android:name="org.chromium.chrome.browser.media.MediaCaptureNot
ificationService" |
880 android:exported="false"/> | 883 android:exported="false"/> |
881 <service android:name="org.chromium.chrome.browser.media.ui.MediaNotific
ationManager$PlaybackListenerService" | 884 <service android:name="org.chromium.chrome.browser.media.ui.MediaNotific
ationManager$PlaybackListenerService" |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
963 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 966 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
964 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 967 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
965 The downstream manifest replaces this block, and hence replaces the
list of media route | 968 The downstream manifest replaces this block, and hence replaces the
list of media route |
966 controllers with its own list. --> | 969 controllers with its own list. --> |
967 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 970 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
968 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 971 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
969 | 972 |
970 {% endblock %} | 973 {% endblock %} |
971 </application> | 974 </application> |
972 </manifest> | 975 </manifest> |
OLD | NEW |