| 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 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 <uses-permission android:name="android.permission.CAMERA" /> | 39 <uses-permission android:name="android.permission.CAMERA" /> |
| 40 <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICAT
ION" /> | 40 <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICAT
ION" /> |
| 41 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> | 41 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> |
| 42 <uses-permission android:name="android.permission.INTERNET"/> | 42 <uses-permission android:name="android.permission.INTERNET"/> |
| 43 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/> | 43 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/> |
| 44 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> | 44 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> |
| 45 <uses-permission android:name="android.permission.NFC"/> | 45 <uses-permission android:name="android.permission.NFC"/> |
| 46 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS"/> | 46 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS"/> |
| 47 <uses-permission android:name="android.permission.READ_SYNC_STATS"/> | 47 <uses-permission android:name="android.permission.READ_SYNC_STATS"/> |
| 48 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> |
| 48 <uses-permission android:name="android.permission.RECORD_AUDIO"/> | 49 <uses-permission android:name="android.permission.RECORD_AUDIO"/> |
| 49 <uses-permission android:name="android.permission.USE_CREDENTIALS"/> | 50 <uses-permission android:name="android.permission.USE_CREDENTIALS"/> |
| 50 <uses-permission android:name="android.permission.VIBRATE"/> | 51 <uses-permission android:name="android.permission.VIBRATE"/> |
| 51 <uses-permission android:name="android.permission.WAKE_LOCK"/> | 52 <uses-permission android:name="android.permission.WAKE_LOCK"/> |
| 52 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | 53 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
| 53 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS"/> | 54 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS"/> |
| 54 | 55 |
| 55 <permission android:name="{{ manifest_package }}.permission.CHILD_SERVICE" a
ndroid:protectionLevel="signature" /> | 56 <permission android:name="{{ manifest_package }}.permission.CHILD_SERVICE" a
ndroid:protectionLevel="signature" /> |
| 56 <permission android:name="{{ manifest_package }}.permission.READ_WRITE_BOOKM
ARK_FOLDERS" android:protectionLevel="signatureOrSystem" /> | 57 <permission android:name="{{ manifest_package }}.permission.READ_WRITE_BOOKM
ARK_FOLDERS" android:protectionLevel="signatureOrSystem" /> |
| 57 <permission android:name="{{ manifest_package }}.TOS_ACKED" android:protecti
onLevel="signatureOrSystem" /> | 58 <permission android:name="{{ manifest_package }}.TOS_ACKED" android:protecti
onLevel="signatureOrSystem" /> |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 <service android:name="org.chromium.chrome.browser.notifications.Notific
ationService" | 557 <service android:name="org.chromium.chrome.browser.notifications.Notific
ationService" |
| 557 android:exported="false"/> | 558 android:exported="false"/> |
| 558 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi
cationService$Receiver" | 559 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi
cationService$Receiver" |
| 559 android:exported="false"> | 560 android:exported="false"> |
| 560 <intent-filter> | 561 <intent-filter> |
| 561 <action android:name="org.chromium.chrome.browser.notifications.
CLICK_NOTIFICATION" /> | 562 <action android:name="org.chromium.chrome.browser.notifications.
CLICK_NOTIFICATION" /> |
| 562 <action android:name="org.chromium.chrome.browser.notifications.
CLOSE_NOTIFICATION" /> | 563 <action android:name="org.chromium.chrome.browser.notifications.
CLOSE_NOTIFICATION" /> |
| 563 </intent-filter> | 564 </intent-filter> |
| 564 </receiver> | 565 </receiver> |
| 565 | 566 |
| 566 <!-- Service Worker Background Sync service listener --> | 567 <!-- Service Worker Background Sync GCM scheduler task --> |
| 567 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch
erService" | 568 <service android:name="org.chromium.chrome.browser.BackgroundSyncLaunche
rService" |
| 568 android:exported="false" /> | 569 android:permission="com.google.android.gms.permission.BIND_NETWORK_T
ASK_SERVICE" |
| 569 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc
herService$Receiver"> | 570 android:exported="true"> |
| 570 <intent-filter> | 571 <intent-filter> |
| 571 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | 572 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA
DY" /> |
| 572 </intent-filter> | 573 </intent-filter> |
| 573 </receiver> | 574 </service> |
| 574 | 575 |
| 575 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere
nderService" | 576 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere
nderService" |
| 576 android:exported="true" | 577 android:exported="true" |
| 577 tools:ignore="ExportedService" /> | 578 tools:ignore="ExportedService" /> |
| 578 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs
ConnectionService" | 579 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs
ConnectionService" |
| 579 android:exported="true" | 580 android:exported="true" |
| 580 tools:ignore="ExportedService"> | 581 tools:ignore="ExportedService"> |
| 581 <intent-filter> | 582 <intent-filter> |
| 582 <action android:name="android.support.customtabs.action.CustomTabs
Service" /> | 583 <action android:name="android.support.customtabs.action.CustomTabs
Service" /> |
| 583 </intent-filter> | 584 </intent-filter> |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 671 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 671 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 672 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 672 The downstream manifest replaces this block, and hence replaces the
list of media route | 673 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 673 controllers with its own list. --> | 674 controllers with its own list. --> |
| 674 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 675 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 675 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 676 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 676 | 677 |
| 677 {% endblock %} | 678 {% endblock %} |
| 678 </application> | 679 </application> |
| 679 </manifest> | 680 </manifest> |
| OLD | NEW |