| 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 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 android:resource="@xml/bookmark_widget_info" /> | 724 android:resource="@xml/bookmark_widget_info" /> |
| 725 </receiver> | 725 </receiver> |
| 726 <service android:name="org.chromium.chrome.browser.bookmarkswidget.Bookm
arkWidgetService" | 726 <service android:name="org.chromium.chrome.browser.bookmarkswidget.Bookm
arkWidgetService" |
| 727 android:permission="android.permission.BIND_REMOTEVIEWS" | 727 android:permission="android.permission.BIND_REMOTEVIEWS" |
| 728 android:exported="false" /> | 728 android:exported="false" /> |
| 729 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book
markWidgetProxy" | 729 <receiver android:name="org.chromium.chrome.browser.bookmarkswidget.Book
markWidgetProxy" |
| 730 android:exported="false" /> | 730 android:exported="false" /> |
| 731 | 731 |
| 732 {% if channel in ['canary', 'default'] %} | 732 {% if channel in ['canary', 'default'] %} |
| 733 <!-- Search widget --> | 733 <!-- Search widget --> |
| 734 <receiver android:name="org.chromium.chrome.browser.searchwidget.SearchW
idgetProvider" | 734 <receiver android:name="org.chromium.chrome.browser.searchwidget.SearchW
idgetProvider"> |
| 735 android:process=":search_widget"> | |
| 736 <intent-filter> | 735 <intent-filter> |
| 737 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> | 736 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> |
| 738 </intent-filter> | 737 </intent-filter> |
| 739 <intent-filter> | 738 <intent-filter> |
| 740 <action android:name="org.chromium.chrome.browser.searchwidget.S
TART_SEARCH_ACTIVITY" /> | 739 <action android:name="org.chromium.chrome.browser.searchwidget.S
TART_SEARCH_ACTIVITY" /> |
| 741 </intent-filter> | 740 </intent-filter> |
| 742 <intent-filter> | 741 <intent-filter> |
| 743 <action android:name="org.chromium.chrome.browser.searchwidget.U
PDATE_ALL_WIDGETS" /> | 742 <action android:name="org.chromium.chrome.browser.searchwidget.U
PDATE_ALL_WIDGETS" /> |
| 744 </intent-filter> | 743 </intent-filter> |
| 745 <meta-data android:name="android.appwidget.provider" | 744 <meta-data android:name="android.appwidget.provider" |
| 746 android:resource="@xml/search_widget_info" /> | 745 android:resource="@xml/search_widget_info" /> |
| 747 </receiver> | 746 </receiver> |
| 748 | 747 |
| 749 <!-- Search Activity --> | 748 <!-- Search Activity --> |
| 750 <activity android:name="org.chromium.chrome.browser.searchwidget.SearchA
ctivity" | 749 <activity android:name="org.chromium.chrome.browser.searchwidget.SearchA
ctivity" |
| 751 android:theme="@style/MainTheme" | 750 android:theme="@style/SearchActivityTheme" |
| 752 android:label="Search" | 751 android:label="Search" |
| 753 android:exported="false" | 752 android:exported="false" |
| 754 android:launchMode="singleTask" | 753 android:launchMode="singleTask" |
| 755 android:taskAffinity="" | 754 android:taskAffinity="" |
| 756 android:clearTaskOnLaunch="true" | 755 android:clearTaskOnLaunch="true" |
| 757 android:excludeFromRecents="true" | 756 android:excludeFromRecents="true" |
| 758 android:windowSoftInputMode="adjustResize" | 757 android:windowSoftInputMode="adjustResize" |
| 759 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | 758 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
| 760 android:hardwareAccelerated="false" /> | 759 android:hardwareAccelerated="false" /> |
| 761 {% endif %} | 760 {% endif %} |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1007 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 1006 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 1008 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 1007 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 1009 The downstream manifest replaces this block, and hence replaces the
list of media route | 1008 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 1010 controllers with its own list. --> | 1009 controllers with its own list. --> |
| 1011 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 1010 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 1012 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 1011 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 1013 | 1012 |
| 1014 {% endblock %} | 1013 {% endblock %} |
| 1015 </application> | 1014 </application> |
| 1016 </manifest> | 1015 </manifest> |
| OLD | NEW |