Chromium Code Reviews| 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 26 matching lines...) Expand all Loading... | |
| 37 <uses-permission-sdk-m android:name="android.permission.BLUETOOTH_ADMIN"/> | 37 <uses-permission-sdk-m android:name="android.permission.BLUETOOTH_ADMIN"/> |
| 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.GET_ACCOUNTS"/> | 40 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> |
| 41 <uses-permission android:name="android.permission.INTERNET"/> | 41 <uses-permission android:name="android.permission.INTERNET"/> |
| 42 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/> | 42 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/> |
| 43 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> | 43 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> |
| 44 <uses-permission android:name="android.permission.NFC"/> | 44 <uses-permission android:name="android.permission.NFC"/> |
| 45 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS"/> | 45 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS"/> |
| 46 <uses-permission android:name="android.permission.READ_SYNC_STATS"/> | 46 <uses-permission android:name="android.permission.READ_SYNC_STATS"/> |
| 47 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> | |
|
jkarlin
2015/09/02 18:16:36
Is this needed?
iclelland
2015/09/02 20:04:48
Yes, in order to be triggered by the GcmNetworkMan
jkarlin
2015/09/03 11:11:57
It should be in all of the manifests then.
iclelland
2015/09/03 15:52:06
Done.
Yaron
2015/09/24 16:13:17
Is that only for M+ or in all cases? I see it isn'
| |
| 47 <uses-permission android:name="android.permission.RECORD_AUDIO"/> | 48 <uses-permission android:name="android.permission.RECORD_AUDIO"/> |
| 48 <uses-permission android:name="android.permission.USE_CREDENTIALS"/> | 49 <uses-permission android:name="android.permission.USE_CREDENTIALS"/> |
| 49 <uses-permission android:name="android.permission.VIBRATE"/> | 50 <uses-permission android:name="android.permission.VIBRATE"/> |
| 50 <uses-permission android:name="android.permission.WAKE_LOCK"/> | 51 <uses-permission android:name="android.permission.WAKE_LOCK"/> |
| 51 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | 52 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
| 52 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS"/> | 53 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS"/> |
| 53 | 54 |
| 54 <permission android:name="{{ manifest_package }}.permission.CHILD_SERVICE" a ndroid:protectionLevel="signature" /> | 55 <permission android:name="{{ manifest_package }}.permission.CHILD_SERVICE" a ndroid:protectionLevel="signature" /> |
| 55 <permission android:name="{{ manifest_package }}.permission.READ_WRITE_BOOKM ARK_FOLDERS" android:protectionLevel="signatureOrSystem" /> | 56 <permission android:name="{{ manifest_package }}.permission.READ_WRITE_BOOKM ARK_FOLDERS" android:protectionLevel="signatureOrSystem" /> |
| 56 <permission android:name="{{ manifest_package }}.TOS_ACKED" android:protecti onLevel="signatureOrSystem" /> | 57 <permission android:name="{{ manifest_package }}.TOS_ACKED" android:protecti onLevel="signatureOrSystem" /> |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 544 <service android:name="org.chromium.chrome.browser.notifications.Notific ationService" | 545 <service android:name="org.chromium.chrome.browser.notifications.Notific ationService" |
| 545 android:exported="false"/> | 546 android:exported="false"/> |
| 546 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver" | 547 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver" |
| 547 android:exported="false"> | 548 android:exported="false"> |
| 548 <intent-filter> | 549 <intent-filter> |
| 549 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" /> | 550 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" /> |
| 550 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" /> | 551 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" /> |
| 551 </intent-filter> | 552 </intent-filter> |
| 552 </receiver> | 553 </receiver> |
| 553 | 554 |
| 554 <!-- Service Worker Background Sync service listener --> | 555 <!-- Service Worker Background Sync GCM scheduler task --> |
| 555 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch erService" | 556 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch erService" |
| 556 android:exported="false" /> | 557 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE" |
| 557 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc herService$Receiver"> | 558 android:exported="true"> |
| 558 <intent-filter> | 559 <intent-filter> |
| 559 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | 560 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" /> |
| 560 </intent-filter> | 561 </intent-filter> |
| 561 </receiver> | 562 </service> |
| 562 | 563 |
| 563 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" | 564 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" |
| 564 android:exported="true" | 565 android:exported="true" |
| 565 tools:ignore="ExportedService" /> | 566 tools:ignore="ExportedService" /> |
| 566 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService" | 567 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService" |
| 567 android:exported="true" | 568 android:exported="true" |
| 568 tools:ignore="ExportedService"> | 569 tools:ignore="ExportedService"> |
| 569 <intent-filter> | 570 <intent-filter> |
| 570 <action android:name="android.support.customtabs.action.CustomTabs Service" /> | 571 <action android:name="android.support.customtabs.action.CustomTabs Service" /> |
| 571 </intent-filter> | 572 </intent-filter> |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 658 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 659 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
| 659 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. | 660 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. |
| 660 The downstream manifest replaces this block, and hence replaces the list of media route | 661 The downstream manifest replaces this block, and hence replaces the list of media route |
| 661 controllers with its own list. --> | 662 controllers with its own list. --> |
| 662 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 663 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
| 663 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 664 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
| 664 | 665 |
| 665 {% endblock %} | 666 {% endblock %} |
| 666 </application> | 667 </application> |
| 667 </manifest> | 668 </manifest> |
| OLD | NEW |