| 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 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 <meta-data | 722 <meta-data |
| 723 android:name="android.appwidget.provider" | 723 android:name="android.appwidget.provider" |
| 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 ['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"> | 735 android:process=":search_widget"> |
| 736 <intent-filter> | 736 <intent-filter> |
| 737 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> | 737 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> |
| 738 </intent-filter> | 738 </intent-filter> |
| 739 <intent-filter> | 739 <intent-filter> |
| 740 <action android:name="org.chromium.chrome.browser.searchwidget.S
TART_SEARCH_ACTIVITY" /> | 740 <action android:name="org.chromium.chrome.browser.searchwidget.S
TART_SEARCH_ACTIVITY" /> |
| 741 </intent-filter> | 741 </intent-filter> |
| 742 <intent-filter> | 742 <intent-filter> |
| 743 <action android:name="org.chromium.chrome.browser.searchwidget.U
PDATE_ALL_WIDGETS" /> | 743 <action android:name="org.chromium.chrome.browser.searchwidget.U
PDATE_ALL_WIDGETS" /> |
| 744 </intent-filter> | 744 </intent-filter> |
| 745 <meta-data android:name="android.appwidget.provider" | 745 <meta-data android:name="android.appwidget.provider" |
| 746 android:resource="@xml/search_widget_info" /> | 746 android:resource="@xml/search_widget_info" /> |
| 747 </receiver> | 747 </receiver> |
| 748 | 748 |
| 749 <!-- Search Activity --> | 749 <!-- Search Activity --> |
| 750 <activity android:name="org.chromium.chrome.browser.searchwidget.SearchA
ctivity" | 750 <activity android:name="org.chromium.chrome.browser.searchwidget.SearchA
ctivity" |
| 751 android:theme="@style/OverlayTheme" | 751 android:theme="@style/MainTheme" |
| 752 android:label="Search" | 752 android:label="Search" |
| 753 android:exported="false" | 753 android:exported="false" |
| 754 android:launchMode="singleInstance" | 754 android:launchMode="singleTask" |
| 755 android:taskAffinity="" | 755 android:taskAffinity="" |
| 756 android:clearTaskOnLaunch="true" | 756 android:clearTaskOnLaunch="true" |
| 757 android:excludeFromRecents="true" | 757 android:excludeFromRecents="true" |
| 758 android:windowSoftInputMode="adjustResize" | 758 android:windowSoftInputMode="adjustResize" |
| 759 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | 759 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
| 760 android:hardwareAccelerated="false" /> | 760 android:hardwareAccelerated="false" /> |
| 761 {% endif %} | 761 {% endif %} |
| 762 | 762 |
| 763 <!-- Receiver for GCM messages. --> | 763 <!-- Receiver for GCM messages. --> |
| 764 <receiver android:name="com.google.android.gms.gcm.GcmReceiver" | 764 <receiver android:name="com.google.android.gms.gcm.GcmReceiver" |
| (...skipping 242 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. | 1007 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. | 1008 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 | 1009 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 1010 controllers with its own list. --> | 1010 controllers with its own list. --> |
| 1011 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 1011 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 1012 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 1012 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 1013 | 1013 |
| 1014 {% endblock %} | 1014 {% endblock %} |
| 1015 </application> | 1015 </application> |
| 1016 </manifest> | 1016 </manifest> |
| OLD | NEW |