| 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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book
markWidgetProxy" | 696 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book
markWidgetProxy" |
| 697 android:exported="false" /> | 697 android:exported="false" /> |
| 698 | 698 |
| 699 {% if channel in ['canary', 'default'] %} | 699 {% if channel in ['canary', 'default'] %} |
| 700 <!-- Search widget --> | 700 <!-- Search widget --> |
| 701 <receiver android:name="org.chromium.chrome.browser.searchwidget.SearchW
idgetProvider"> | 701 <receiver android:name="org.chromium.chrome.browser.searchwidget.SearchW
idgetProvider"> |
| 702 <intent-filter> | 702 <intent-filter> |
| 703 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> | 703 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> |
| 704 </intent-filter> | 704 </intent-filter> |
| 705 <intent-filter> | 705 <intent-filter> |
| 706 <action android:name="org.chromium.chrome.browser.searchwidget.S
TART_SEARCH_ACTIVITY" /> | 706 <action android:name="org.chromium.chrome.browser.searchwidget.S
TART_TEXT_QUERY" /> |
| 707 </intent-filter> |
| 708 <intent-filter> |
| 709 <action android:name="org.chromium.chrome.browser.searchwidget.S
TART_VOICE_QUERY" /> |
| 707 </intent-filter> | 710 </intent-filter> |
| 708 <intent-filter> | 711 <intent-filter> |
| 709 <action android:name="org.chromium.chrome.browser.searchwidget.U
PDATE_ALL_WIDGETS" /> | 712 <action android:name="org.chromium.chrome.browser.searchwidget.U
PDATE_ALL_WIDGETS" /> |
| 710 </intent-filter> | 713 </intent-filter> |
| 711 <meta-data android:name="android.appwidget.provider" | 714 <meta-data android:name="android.appwidget.provider" |
| 712 android:resource="@xml/search_widget_info" /> | 715 android:resource="@xml/search_widget_info" /> |
| 713 </receiver> | 716 </receiver> |
| 714 | 717 |
| 715 <!-- Search Activity --> | 718 <!-- Search Activity --> |
| 716 <activity android:name="org.chromium.chrome.browser.searchwidget.SearchA
ctivity" | 719 <activity android:name="org.chromium.chrome.browser.searchwidget.SearchA
ctivity" |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 973 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 976 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 974 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 977 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 975 The downstream manifest replaces this block, and hence replaces the
list of media route | 978 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 976 controllers with its own list. --> | 979 controllers with its own list. --> |
| 977 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 980 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 978 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 981 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 979 | 982 |
| 980 {% endblock %} | 983 {% endblock %} |
| 981 </application> | 984 </application> |
| 982 </manifest> | 985 </manifest> |
| OLD | NEW |