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"/> | |
|
Yaron
2015/09/24 16:13:17
Also, where is it used? Within play services?
iclelland
2015/09/24 17:11:50
Yes, it's only used within play services -- the Ne
jkarlin
2015/09/24 18:08:47
Ian: I thought we agreed that this permission had
iclelland
2015/09/24 18:33:04
Maybe I misunderstood -- I thought we agreed that
jkarlin
2015/09/24 18:38:34
That's right, my mistake.
iclelland
2015/09/24 18:56:19
My understanding is that that permission does not
| |
| 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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 543 <service android:name="org.chromium.chrome.browser.notifications.Notific ationService" | 544 <service android:name="org.chromium.chrome.browser.notifications.Notific ationService" |
| 544 android:exported="false"/> | 545 android:exported="false"/> |
| 545 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver" | 546 <receiver android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver" |
| 546 android:exported="false"> | 547 android:exported="false"> |
| 547 <intent-filter> | 548 <intent-filter> |
| 548 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" /> | 549 <action android:name="org.chromium.chrome.browser.notifications. CLICK_NOTIFICATION" /> |
| 549 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" /> | 550 <action android:name="org.chromium.chrome.browser.notifications. CLOSE_NOTIFICATION" /> |
| 550 </intent-filter> | 551 </intent-filter> |
| 551 </receiver> | 552 </receiver> |
| 552 | 553 |
| 553 <!-- Service Worker Background Sync service listener --> | 554 <!-- Service Worker Background Sync GCM scheduler task --> |
| 554 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch erService" | 555 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch erService" |
| 555 android:exported="false" /> | 556 android:permission="com.google.android.gms.permission.BIND_NETWORK_T ASK_SERVICE" |
| 556 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc herService$Receiver"> | 557 android:exported="true"> |
| 557 <intent-filter> | 558 <intent-filter> |
| 558 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | 559 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA DY" /> |
| 559 </intent-filter> | 560 </intent-filter> |
| 560 </receiver> | 561 </service> |
| 561 | 562 |
| 562 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" | 563 <service android:name="org.chromium.chrome.browser.prerender.ChromePrere nderService" |
| 563 android:exported="true" | 564 android:exported="true" |
| 564 tools:ignore="ExportedService" /> | 565 tools:ignore="ExportedService" /> |
| 565 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService" | 566 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService" |
| 566 android:exported="true" | 567 android:exported="true" |
| 567 tools:ignore="ExportedService"> | 568 tools:ignore="ExportedService"> |
| 568 <intent-filter> | 569 <intent-filter> |
| 569 <action android:name="android.support.customtabs.action.CustomTabs Service" /> | 570 <action android:name="android.support.customtabs.action.CustomTabs Service" /> |
| 570 </intent-filter> | 571 </intent-filter> |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 657 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 658 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
| 658 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. | 659 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. |
| 659 The downstream manifest replaces this block, and hence replaces the list of media route | 660 The downstream manifest replaces this block, and hence replaces the list of media route |
| 660 controllers with its own list. --> | 661 controllers with its own list. --> |
| 661 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 662 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
| 662 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 663 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
| 663 | 664 |
| 664 {% endblock %} | 665 {% endblock %} |
| 665 </application> | 666 </application> |
| 666 </manifest> | 667 </manifest> |
| OLD | NEW |