| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 105 |
| 106 {% block extra_keyset_definitions %} | 106 {% block extra_keyset_definitions %} |
| 107 {% endblock %} | 107 {% endblock %} |
| 108 | 108 |
| 109 <!-- Set android:largeHeap to "true" to allow more than the default | 109 <!-- Set android:largeHeap to "true" to allow more than the default |
| 110 Java heap limit (32Mb on Nexus S, 48Mb on Xoom). --> | 110 Java heap limit (32Mb on Nexus S, 48Mb on Xoom). --> |
| 111 <application android:name="{% block application_name %}org.chromium.chrome.b
rowser.ChromeApplication{% endblock %}" | 111 <application android:name="{% block application_name %}org.chromium.chrome.b
rowser.ChromeApplication{% endblock %}" |
| 112 android:icon="@mipmap/app_icon" | 112 android:icon="@mipmap/app_icon" |
| 113 android:label="@string/app_name" | 113 android:label="@string/app_name" |
| 114 android:largeHeap="false" | 114 android:largeHeap="false" |
| 115 android:allowBackup="true" | 115 android:allowBackup="false" |
| 116 android:manageSpaceActivity="@string/manage_space_activity" | 116 android:manageSpaceActivity="@string/manage_space_activity" |
| 117 android:fullBackupContent="@xml/chromebackupscheme" | 117 android:fullBackupContent="@xml/chromebackupscheme" |
| 118 android:fullBackupOnly="true" | 118 android:fullBackupOnly="false" |
| 119 android:restoreAnyVersion="true" | 119 android:restoreAnyVersion="true" |
| 120 {% block android_backup_agent %} | 120 {% block android_backup_agent %} |
| 121 android:backupAgent="org.chromium.chrome.browser.ChromeBackupAgent" | 121 android:backupAgent="org.chromium.chrome.browser.ChromeBackupAgent" |
| 122 {% endblock %} | 122 {% endblock %} |
| 123 android:supportsRtl="true" | 123 android:supportsRtl="true" |
| 124 {% if target_sdk_version|int >= 24 %} | 124 {% if target_sdk_version|int >= 24 %} |
| 125 android:networkSecurityConfig="@xml/network_security_config" | 125 android:networkSecurityConfig="@xml/network_security_config" |
| 126 {% endif %} | 126 {% endif %} |
| 127 {% block extra_application_attributes %}{% endblock %}> | 127 {% block extra_application_attributes %}{% endblock %}> |
| 128 | 128 |
| (...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 913 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 914 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 914 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 915 The downstream manifest replaces this block, and hence replaces the
list of media route | 915 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 916 controllers with its own list. --> | 916 controllers with its own list. --> |
| 917 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 917 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 918 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 918 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 919 | 919 |
| 920 {% endblock %} | 920 {% endblock %} |
| 921 </application> | 921 </application> |
| 922 </manifest> | 922 </manifest> |
| OLD | NEW |