| 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 android:targetActivity="org.chromium.chrome.browser.webapps.WebappAc
tivity{{ i }}" | 557 android:targetActivity="org.chromium.chrome.browser.webapps.WebappAc
tivity{{ i }}" |
| 558 android:icon="@mipmap/app_shortcut_icon" | 558 android:icon="@mipmap/app_shortcut_icon" |
| 559 android:label="@string/webapp_activity_title"> | 559 android:label="@string/webapp_activity_title"> |
| 560 </activity-alias> | 560 </activity-alias> |
| 561 {% endfor %} | 561 {% endfor %} |
| 562 <!-- Activities for WebAPKs. --> | 562 <!-- Activities for WebAPKs. --> |
| 563 <activity android:name="org.chromium.chrome.browser.webapps.WebApkActivi
ty" | 563 <activity android:name="org.chromium.chrome.browser.webapps.WebApkActivi
ty" |
| 564 android:theme="@style/WebappTheme" | 564 android:theme="@style/WebappTheme" |
| 565 android:label="@string/webapp_activity_title" | 565 android:label="@string/webapp_activity_title" |
| 566 android:launchMode="singleTop" | 566 android:launchMode="singleTop" |
| 567 android:documentLaunchMode="intoExisting" | |
| 568 android:windowSoftInputMode="adjustResize" | 567 android:windowSoftInputMode="adjustResize" |
| 569 android:persistableMode="persistNever" | 568 android:persistableMode="persistNever" |
| 570 android:hardwareAccelerated="false" | 569 android:hardwareAccelerated="false" |
| 571 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | 570 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
| 572 {{ self.supports_video_persistence() }} > | 571 {{ self.supports_video_persistence() }} > |
| 573 </activity> | 572 </activity> |
| 574 {% for i in range(10) %} | 573 {% for i in range(10) %} |
| 575 <activity android:name="org.chromium.chrome.browser.webapps.WebApkActivi
ty{{ i }}" | 574 <activity android:name="org.chromium.chrome.browser.webapps.WebApkActivi
ty{{ i }}" |
| 576 android:theme="@style/WebappTheme" | 575 android:theme="@style/WebappTheme" |
| 577 android:icon="@mipmap/app_shortcut_icon" | 576 android:icon="@mipmap/app_shortcut_icon" |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 977 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 976 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 978 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 977 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 979 The downstream manifest replaces this block, and hence replaces the
list of media route | 978 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 980 controllers with its own list. --> | 979 controllers with its own list. --> |
| 981 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 980 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 982 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 981 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 983 | 982 |
| 984 {% endblock %} | 983 {% endblock %} |
| 985 </application> | 984 </application> |
| 986 </manifest> | 985 </manifest> |
| OLD | NEW |