| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 <uses-permission android:name="{{ manifest_package }}.permission.C2D_MESSAGE
" /> | 76 <uses-permission android:name="{{ manifest_package }}.permission.C2D_MESSAGE
" /> |
| 77 <uses-permission android:name="{{ manifest_package }}.permission.READ_WRITE_
BOOKMARK_FOLDERS" /> | 77 <uses-permission android:name="{{ manifest_package }}.permission.READ_WRITE_
BOOKMARK_FOLDERS" /> |
| 78 <uses-permission android:name="{{ manifest_package }}.TOS_ACKED" /> | 78 <uses-permission android:name="{{ manifest_package }}.TOS_ACKED" /> |
| 79 | 79 |
| 80 <uses-permission android:name="com.chrome.permission.DEVICE_EXTRAS" /> | 80 <uses-permission android:name="com.chrome.permission.DEVICE_EXTRAS" /> |
| 81 <uses-permission android:name="com.android.browser.permission.READ_HISTORY_B
OOKMARKS"/> | 81 <uses-permission android:name="com.android.browser.permission.READ_HISTORY_B
OOKMARKS"/> |
| 82 <uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_
BOOKMARKS"/> | 82 <uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_
BOOKMARKS"/> |
| 83 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /
> | 83 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /
> |
| 84 <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORT
CUT"/> | 84 <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORT
CUT"/> |
| 85 | 85 |
| 86 <uses-permission android:name="com.google.android.apps.now.CURRENT_ACCOUNT_A
CCESS" /> |
| 87 |
| 86 {% block extra_uses_permissions %} | 88 {% block extra_uses_permissions %} |
| 87 {% endblock %} | 89 {% endblock %} |
| 88 | 90 |
| 89 <!-- We may use GPS but it's not required --> | 91 <!-- We may use GPS but it's not required --> |
| 90 <uses-feature android:name="android.hardware.location.gps" android:required=
"false" /> | 92 <uses-feature android:name="android.hardware.location.gps" android:required=
"false" /> |
| 91 <uses-feature android:name="android.hardware.camera" android:required="false
" /> | 93 <uses-feature android:name="android.hardware.camera" android:required="false
" /> |
| 92 | 94 |
| 93 <!-- | 95 <!-- |
| 94 android.permission.RECORD_AUDIO makes this implied, however we don't | 96 android.permission.RECORD_AUDIO makes this implied, however we don't |
| 95 require a microphone. | 97 require a microphone. |
| (...skipping 817 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. | 915 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. | 916 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 | 917 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 916 controllers with its own list. --> | 918 controllers with its own list. --> |
| 917 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 919 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 918 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 920 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 919 | 921 |
| 920 {% endblock %} | 922 {% endblock %} |
| 921 </application> | 923 </application> |
| 922 </manifest> | 924 </manifest> |
| OLD | NEW |