| 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 android:resource="@xml/bookmark_widget_info" /> | 689 android:resource="@xml/bookmark_widget_info" /> |
| 690 </receiver> | 690 </receiver> |
| 691 <service android:name="org.chromium.chrome.browser.bookmarkswidget.Bookm
arkWidgetService" | 691 <service android:name="org.chromium.chrome.browser.bookmarkswidget.Bookm
arkWidgetService" |
| 692 android:permission="android.permission.BIND_REMOTEVIEWS" | 692 android:permission="android.permission.BIND_REMOTEVIEWS" |
| 693 android:exported="false" /> | 693 android:exported="false" /> |
| 694 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book
markWidgetProxy" | 694 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book
markWidgetProxy" |
| 695 android:exported="false" /> | 695 android:exported="false" /> |
| 696 | 696 |
| 697 {% if channel in ['canary', 'default'] %} | 697 {% if channel in ['canary', 'default'] %} |
| 698 <!-- Search widget --> | 698 <!-- Search widget --> |
| 699 <receiver android:name="org.chromium.chrome.browser.searchwidget.SearchW
idgetProvider"> | 699 <receiver |
| 700 android:name="org.chromium.chrome.browser.searchwidget.SearchWid
getProvider" |
| 701 android:label="@string/search_widget_title"> |
| 700 <intent-filter> | 702 <intent-filter> |
| 701 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> | 703 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> |
| 702 </intent-filter> | 704 </intent-filter> |
| 703 <intent-filter> | 705 <intent-filter> |
| 704 <action android:name="org.chromium.chrome.browser.searchwidget.S
TART_TEXT_QUERY" /> | 706 <action android:name="org.chromium.chrome.browser.searchwidget.S
TART_TEXT_QUERY" /> |
| 705 </intent-filter> | 707 </intent-filter> |
| 706 <intent-filter> | 708 <intent-filter> |
| 707 <action android:name="org.chromium.chrome.browser.searchwidget.S
TART_VOICE_QUERY" /> | 709 <action android:name="org.chromium.chrome.browser.searchwidget.S
TART_VOICE_QUERY" /> |
| 708 </intent-filter> | 710 </intent-filter> |
| 709 <intent-filter> | 711 <intent-filter> |
| 710 <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" /> |
| 711 </intent-filter> | 713 </intent-filter> |
| 712 <meta-data android:name="android.appwidget.provider" | 714 <meta-data |
| 713 android:resource="@xml/search_widget_info" /> | 715 android:name="android.appwidget.provider" |
| 716 android:resource="@xml/search_widget_info" /> |
| 714 </receiver> | 717 </receiver> |
| 715 | 718 |
| 716 <!-- Search Activity --> | 719 <!-- Search Activity --> |
| 717 <activity android:name="org.chromium.chrome.browser.searchwidget.SearchA
ctivity" | 720 <activity android:name="org.chromium.chrome.browser.searchwidget.SearchA
ctivity" |
| 718 android:theme="@style/SearchActivityTheme" | 721 android:theme="@style/SearchActivityTheme" |
| 719 android:label="Search" | 722 android:label="Search" |
| 720 android:exported="false" | 723 android:exported="false" |
| 721 android:launchMode="singleTask" | 724 android:launchMode="singleTask" |
| 722 android:taskAffinity="" | 725 android:taskAffinity="" |
| 723 android:clearTaskOnLaunch="true" | 726 android:clearTaskOnLaunch="true" |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 974 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 977 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 975 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 978 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 976 The downstream manifest replaces this block, and hence replaces the
list of media route | 979 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 977 controllers with its own list. --> | 980 controllers with its own list. --> |
| 978 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 981 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 979 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 982 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 980 | 983 |
| 981 {% endblock %} | 984 {% endblock %} |
| 982 </application> | 985 </application> |
| 983 </manifest> | 986 </manifest> |
| OLD | NEW |