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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 {% endblock %} | 96 {% endblock %} |
97 | 97 |
98 <!-- Set android:largeHeap to "true" to allow more than the default | 98 <!-- Set android:largeHeap to "true" to allow more than the default |
99 Java heap limit (32Mb on Nexus S, 48Mb on Xoom). --> | 99 Java heap limit (32Mb on Nexus S, 48Mb on Xoom). --> |
100 <application android:name="{% block application_name %}org.chromium.chrome.b
rowser.ChromeApplication{% endblock %}" | 100 <application android:name="{% block application_name %}org.chromium.chrome.b
rowser.ChromeApplication{% endblock %}" |
101 android:icon="@mipmap/app_icon" | 101 android:icon="@mipmap/app_icon" |
102 android:label="@string/app_name" | 102 android:label="@string/app_name" |
103 android:largeHeap="false" | 103 android:largeHeap="false" |
104 android:allowBackup="true" | 104 android:allowBackup="true" |
105 android:fullBackupContent="@xml/chromebackupscheme" | 105 android:fullBackupContent="@xml/chromebackupscheme" |
| 106 android:restoreAnyVersion="true" |
106 {% block android_backup_agent %} | 107 {% block android_backup_agent %} |
107 android:backupAgent="org.chromium.chrome.browser.ChromeBackupAgent" | 108 android:backupAgent="org.chromium.chrome.browser.ChromeBackupAgent" |
108 {% endblock %} | 109 {% endblock %} |
109 android:supportsRtl="true" | 110 android:supportsRtl="true" |
110 {% block extra_application_attributes %}{% endblock %}> | 111 {% block extra_application_attributes %}{% endblock %}> |
111 | 112 |
112 <!-- Samsung MultiWindow Support --> | 113 <!-- Samsung MultiWindow Support --> |
113 <meta-data android:name="com.samsung.android.sdk.multiwindow.enable" | 114 <meta-data android:name="com.samsung.android.sdk.multiwindow.enable" |
114 android:value="true" /> | 115 android:value="true" /> |
115 <meta-data android:name="com.samsung.android.sdk.multiwindow.multiinstan
ce.enable" | 116 <meta-data android:name="com.samsung.android.sdk.multiwindow.multiinstan
ce.enable" |
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
826 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 827 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
827 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 828 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
828 The downstream manifest replaces this block, and hence replaces the
list of media route | 829 The downstream manifest replaces this block, and hence replaces the
list of media route |
829 controllers with its own list. --> | 830 controllers with its own list. --> |
830 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 831 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
831 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 832 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
832 | 833 |
833 {% endblock %} | 834 {% endblock %} |
834 </application> | 835 </application> |
835 </manifest> | 836 </manifest> |
OLD | NEW |