Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 2473683002: Disable Android backup and restore (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
103 103
104 {% block extra_keyset_definitions %} 104 {% block extra_keyset_definitions %}
105 {% endblock %} 105 {% endblock %}
106 106
107 <!-- Set android:largeHeap to "true" to allow more than the default 107 <!-- Set android:largeHeap to "true" to allow more than the default
108 Java heap limit (32Mb on Nexus S, 48Mb on Xoom). --> 108 Java heap limit (32Mb on Nexus S, 48Mb on Xoom). -->
109 <application android:name="{% block application_name %}org.chromium.chrome.b rowser.ChromeApplication{% endblock %}" 109 <application android:name="{% block application_name %}org.chromium.chrome.b rowser.ChromeApplication{% endblock %}"
110 android:icon="@mipmap/app_icon" 110 android:icon="@mipmap/app_icon"
111 android:label="@string/app_name" 111 android:label="@string/app_name"
112 android:largeHeap="false" 112 android:largeHeap="false"
113 android:allowBackup="true" 113 android:allowBackup="false"
114 android:manageSpaceActivity="@string/manage_space_activity" 114 android:manageSpaceActivity="@string/manage_space_activity"
115 android:fullBackupContent="@xml/chromebackupscheme" 115 android:fullBackupContent="@xml/chromebackupscheme"
116 android:fullBackupOnly="true" 116 android:fullBackupOnly="false"
117 android:restoreAnyVersion="true" 117 android:restoreAnyVersion="true"
118 {% block android_backup_agent %} 118 {% block android_backup_agent %}
119 android:backupAgent="org.chromium.chrome.browser.ChromeBackupAgent" 119 android:backupAgent="org.chromium.chrome.browser.ChromeBackupAgent"
120 {% endblock %} 120 {% endblock %}
121 android:supportsRtl="true" 121 android:supportsRtl="true"
122 {% if target_sdk_version|int >= 24 %} 122 {% if target_sdk_version|int >= 24 %}
123 android:networkSecurityConfig="@xml/network_security_config" 123 android:networkSecurityConfig="@xml/network_security_config"
124 {% endif %} 124 {% endif %}
125 {% block extra_application_attributes %}{% endblock %}> 125 {% block extra_application_attributes %}{% endblock %}>
126 126
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 899 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
900 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 900 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
901 The downstream manifest replaces this block, and hence replaces the list of media route 901 The downstream manifest replaces this block, and hence replaces the list of media route
902 controllers with its own list. --> 902 controllers with its own list. -->
903 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 903 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
904 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 904 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
905 905
906 {% endblock %} 906 {% endblock %}
907 </application> 907 </application>
908 </manifest> 908 </manifest>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698