| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 <data android:scheme="https" /> | 205 <data android:scheme="https" /> |
| 206 </intent-filter> | 206 </intent-filter> |
| 207 <intent-filter> | 207 <intent-filter> |
| 208 <action android:name="android.intent.action.SEARCH" /> | 208 <action android:name="android.intent.action.SEARCH" /> |
| 209 </intent-filter> | 209 </intent-filter> |
| 210 <intent-filter> | 210 <intent-filter> |
| 211 <action android:name="com.sec.android.airview.HOVER" /> | 211 <action android:name="com.sec.android.airview.HOVER" /> |
| 212 </intent-filter> | 212 </intent-filter> |
| 213 <meta-data android:name="android.app.searchable" | 213 <meta-data android:name="android.app.searchable" |
| 214 android:resource="@xml/searchable" /> | 214 android:resource="@xml/searchable" /> |
| 215 {% if target_sdk_version == 'NMR1' %} | 215 {% if target_sdk_version|int > 24 %} |
| 216 <meta-data android:name="android.app.shortcuts" | 216 <meta-data android:name="android.app.shortcuts" |
| 217 android:resource="@xml/launchershortcuts"/> | 217 android:resource="@xml/launchershortcuts" /> |
| 218 {% endif %} | 218 {% endif %} |
| 219 | 219 |
| 220 </activity-alias> | 220 </activity-alias> |
| 221 | 221 |
| 222 <activity android:name="org.chromium.chrome.browser.LauncherShortcutActi
vity" | 222 <activity android:name="org.chromium.chrome.browser.LauncherShortcutActi
vity" |
| 223 android:theme="@android:style/Theme.NoDisplay" | 223 android:theme="@android:style/Theme.NoDisplay" |
| 224 android:taskAffinity="" | 224 android:taskAffinity="" |
| 225 android:excludeFromRecents="true" | 225 android:excludeFromRecents="true" |
| 226 android:exported="false" /> | 226 android:exported="false" /> |
| 227 | 227 |
| (...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 854 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 854 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 855 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 855 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 856 The downstream manifest replaces this block, and hence replaces the
list of media route | 856 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 857 controllers with its own list. --> | 857 controllers with its own list. --> |
| 858 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 858 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 859 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 859 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 860 | 860 |
| 861 {% endblock %} | 861 {% endblock %} |
| 862 </application> | 862 </application> |
| 863 </manifest> | 863 </manifest> |
| OLD | NEW |