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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 all applications and needs to be disabled manually. | 103 all applications and needs to be disabled manually. |
104 --> | 104 --> |
105 <uses-feature android:name="android.hardware.touchscreen" android:required="
false" /> | 105 <uses-feature android:name="android.hardware.touchscreen" android:required="
false" /> |
106 | 106 |
107 {% block extra_keyset_definitions %} | 107 {% block extra_keyset_definitions %} |
108 {% endblock %} | 108 {% endblock %} |
109 | 109 |
110 <!-- Set android:largeHeap to "true" to allow more than the default | 110 <!-- Set android:largeHeap to "true" to allow more than the default |
111 Java heap limit (32Mb on Nexus S, 48Mb on Xoom). --> | 111 Java heap limit (32Mb on Nexus S, 48Mb on Xoom). --> |
112 <application android:name="{% block application_name %}org.chromium.chrome.b
rowser.ChromeApplication{% endblock %}" | 112 <application android:name="{% block application_name %}org.chromium.chrome.b
rowser.ChromeApplication{% endblock %}" |
113 android:icon="@mipmap/app_icon" | 113 android:icon="@drawable/ic_launcher" |
114 android:label="@string/app_name" | 114 android:label="@string/app_name" |
115 android:largeHeap="false" | 115 android:largeHeap="false" |
116 android:manageSpaceActivity="@string/manage_space_activity" | 116 android:manageSpaceActivity="@string/manage_space_activity" |
117 android:supportsRtl="true" | 117 android:supportsRtl="true" |
118 {% if backup_key is defined %} | 118 {% if backup_key is defined %} |
119 android:allowBackup="true" | 119 android:allowBackup="true" |
120 android:backupAgent="org.chromium.chrome.browser.ChromeBackupAgent" | 120 android:backupAgent="org.chromium.chrome.browser.ChromeBackupAgent" |
121 android:fullBackupOnly="false" | 121 android:fullBackupOnly="false" |
122 android:restoreAnyVersion="true" | 122 android:restoreAnyVersion="true" |
123 {% else %} | 123 {% else %} |
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1007 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 1007 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
1008 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 1008 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
1009 The downstream manifest replaces this block, and hence replaces the
list of media route | 1009 The downstream manifest replaces this block, and hence replaces the
list of media route |
1010 controllers with its own list. --> | 1010 controllers with its own list. --> |
1011 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 1011 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
1012 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 1012 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
1013 | 1013 |
1014 {% endblock %} | 1014 {% endblock %} |
1015 </application> | 1015 </application> |
1016 </manifest> | 1016 </manifest> |
OLD | NEW |