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