| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 <meta-data android:name="android.app.shortcuts" | 247 <meta-data android:name="android.app.shortcuts" |
| 248 android:resource="@xml/launchershortcuts" /> | 248 android:resource="@xml/launchershortcuts" /> |
| 249 {% endif %} | 249 {% endif %} |
| 250 | 250 |
| 251 </activity-alias> | 251 </activity-alias> |
| 252 | 252 |
| 253 <activity android:name="org.chromium.chrome.browser.LauncherShortcutActi
vity" | 253 <activity android:name="org.chromium.chrome.browser.LauncherShortcutActi
vity" |
| 254 android:theme="@android:style/Theme.NoDisplay" | 254 android:theme="@android:style/Theme.NoDisplay" |
| 255 android:taskAffinity="" | 255 android:taskAffinity="" |
| 256 android:excludeFromRecents="true" | 256 android:excludeFromRecents="true" |
| 257 android:exported="true" /> | 257 android:exported="false" /> |
| 258 | 258 |
| 259 <!-- Upgrade related --> | 259 <!-- Upgrade related --> |
| 260 <activity android:name="org.chromium.chrome.browser.upgrade.UpgradeActiv
ity" | 260 <activity android:name="org.chromium.chrome.browser.upgrade.UpgradeActiv
ity" |
| 261 android:excludeFromRecents="true" | 261 android:excludeFromRecents="true" |
| 262 android:theme="@style/MainTheme" | 262 android:theme="@style/MainTheme" |
| 263 android:windowSoftInputMode="adjustResize" | 263 android:windowSoftInputMode="adjustResize" |
| 264 android:taskAffinity="" | 264 android:taskAffinity="" |
| 265 android:launchMode="singleInstance" | 265 android:launchMode="singleInstance" |
| 266 android:persistableMode="persistNever" | 266 android:persistableMode="persistNever" |
| 267 android:autoRemoveFromRecents="false" | 267 android:autoRemoveFromRecents="false" |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 917 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 918 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 918 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 919 The downstream manifest replaces this block, and hence replaces the
list of media route | 919 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 920 controllers with its own list. --> | 920 controllers with its own list. --> |
| 921 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 921 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 922 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 922 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 923 | 923 |
| 924 {% endblock %} | 924 {% endblock %} |
| 925 </application> | 925 </application> |
| 926 </manifest> | 926 </manifest> |
| OLD | NEW |