| 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 <data android:scheme="https" /> | 251 <data android:scheme="https" /> |
| 252 </intent-filter> | 252 </intent-filter> |
| 253 <intent-filter> | 253 <intent-filter> |
| 254 <action android:name="android.intent.action.SEARCH" /> | 254 <action android:name="android.intent.action.SEARCH" /> |
| 255 </intent-filter> | 255 </intent-filter> |
| 256 <intent-filter> | 256 <intent-filter> |
| 257 <action android:name="com.sec.android.airview.HOVER" /> | 257 <action android:name="com.sec.android.airview.HOVER" /> |
| 258 </intent-filter> | 258 </intent-filter> |
| 259 <meta-data android:name="android.app.searchable" | 259 <meta-data android:name="android.app.searchable" |
| 260 android:resource="@xml/searchable" /> | 260 android:resource="@xml/searchable" /> |
| 261 {% if target_sdk_version|int > 24 %} | 261 {% if target_sdk_version|int > 24 or target_sdk_version == 'O' %} |
| 262 <meta-data android:name="android.app.shortcuts" | 262 <meta-data android:name="android.app.shortcuts" |
| 263 android:resource="@xml/launchershortcuts" /> | 263 android:resource="@xml/launchershortcuts" /> |
| 264 {% endif %} | 264 {% endif %} |
| 265 | 265 |
| 266 </activity-alias> | 266 </activity-alias> |
| 267 | 267 |
| 268 <activity android:name="org.chromium.chrome.browser.LauncherShortcutActi
vity" | 268 <activity android:name="org.chromium.chrome.browser.LauncherShortcutActi
vity" |
| 269 android:theme="@android:style/Theme.NoDisplay" | 269 android:theme="@android:style/Theme.NoDisplay" |
| 270 android:taskAffinity="" | 270 android:taskAffinity="" |
| 271 android:excludeFromRecents="true" | 271 android:excludeFromRecents="true" |
| (...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 971 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 971 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 972 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 972 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 973 The downstream manifest replaces this block, and hence replaces the
list of media route | 973 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 974 controllers with its own list. --> | 974 controllers with its own list. --> |
| 975 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 975 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 976 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 976 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 977 | 977 |
| 978 {% endblock %} | 978 {% endblock %} |
| 979 </application> | 979 </application> |
| 980 </manifest> | 980 </manifest> |
| OLD | NEW |