| 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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 <intent-filter> | 689 <intent-filter> |
| 690 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> | 690 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> |
| 691 </intent-filter> | 691 </intent-filter> |
| 692 </receiver> | 692 </receiver> |
| 693 | 693 |
| 694 <!-- Download service --> | 694 <!-- Download service --> |
| 695 <service android:name="org.chromium.chrome.browser.download.DownloadNoti
ficationService" | 695 <service android:name="org.chromium.chrome.browser.download.DownloadNoti
ficationService" |
| 696 android:exported="false"> | 696 android:exported="false"> |
| 697 </service> | 697 </service> |
| 698 | 698 |
| 699 <service android:name="org.chromium.components.variations.firstrun.Varia
tionsSeedService" |
| 700 android:exported="false" /> |
| 701 |
| 702 <receiver android:name="org.chromium.components.variations.firstrun.Vari
ationsSeedServiceLauncher" |
| 703 android:permission="{{ manifest_package }}.TOS_ACKED"> |
| 704 <intent-filter> |
| 705 <action android:name="{{ manifest_package }}.TOS_ACKED" /> |
| 706 </intent-filter> |
| 707 </receiver> |
| 708 |
| 709 <receiver android:name="org.chromium.chrome.browser.firstrun.ToSAckedRec
eiver" |
| 710 android:permission="{{ manifest_package }}.TOS_ACKED"> |
| 711 <intent-filter> |
| 712 <action android:name="{{ manifest_package }}.TOS_ACKED" /> |
| 713 </intent-filter> |
| 714 </receiver> |
| 715 |
| 699 <!-- Bookmarks widget --> | 716 <!-- Bookmarks widget --> |
| 700 <receiver android:name="com.google.android.apps.chrome.appwidget.bookmar
ks.BookmarkThumbnailWidgetProvider" | 717 <receiver android:name="com.google.android.apps.chrome.appwidget.bookmar
ks.BookmarkThumbnailWidgetProvider" |
| 701 android:label="@string/bookmark_widget_title"> | 718 android:label="@string/bookmark_widget_title"> |
| 702 <intent-filter> | 719 <intent-filter> |
| 703 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> | 720 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> |
| 704 <action android:name=".BOOKMARK_APPWIDGET_UPDATE" /> | 721 <action android:name=".BOOKMARK_APPWIDGET_UPDATE" /> |
| 705 </intent-filter> | 722 </intent-filter> |
| 706 <meta-data | 723 <meta-data |
| 707 android:name="android.appwidget.provider" | 724 android:name="android.appwidget.provider" |
| 708 android:resource="@xml/bookmark_widget_info" /> | 725 android:resource="@xml/bookmark_widget_info" /> |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 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. |
| 955 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. |
| 956 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 |
| 957 controllers with its own list. --> | 974 controllers with its own list. --> |
| 958 <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" |
| 959 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 976 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 960 | 977 |
| 961 {% endblock %} | 978 {% endblock %} |
| 962 </application> | 979 </application> |
| 963 </manifest> | 980 </manifest> |
| OLD | NEW |