diff options
author | Jeff Brown <jeffbrown@google.com> | 2014-08-19 17:39:42 -0700 |
---|---|---|
committer | Jeff Brown <jeffbrown@google.com> | 2014-08-19 20:08:52 -0700 |
commit | b135d06cb83db03b1328b7a82f064de7868fb16f (patch) | |
tree | 0b8c1acafca2cff47db950e30e2c6427b29bf7b6 /core | |
parent | 240ecfe54f280f30439d4aca8069c3d0671eb982 (diff) | |
download | frameworks_base-b135d06cb83db03b1328b7a82f064de7868fb16f.zip frameworks_base-b135d06cb83db03b1328b7a82f064de7868fb16f.tar.gz frameworks_base-b135d06cb83db03b1328b7a82f064de7868fb16f.tar.bz2 |
Remove incomplete media router API. (DO NOT MERGE)
Change-Id: I310fadafb5a6b8190a32e5d87f3e1823c87bcef7
Diffstat (limited to 'core')
-rw-r--r-- | core/java/android/provider/Settings.java | 2 | ||||
-rw-r--r-- | core/res/AndroidManifest.xml | 15 | ||||
-rw-r--r-- | core/res/res/values/strings.xml | 11 |
3 files changed, 1 insertions, 27 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 5e77d28..52f1dd9 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -305,7 +305,7 @@ public final class Settings { /** * Activity Action: Show settings to allow configuration of - * {@link android.media.routing.MediaRouteService media route providers}. + * cast endpoints. * <p> * In some cases, a matching Activity may not exist, so ensure you * safeguard against this. diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 157147e..7809c71 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -2210,14 +2210,6 @@ android:description="@string/permdesc_modifyParentalControls" android:protectionLevel="signature" /> - <!-- Must be required by a {@link android.media.routing.MediaRouteService} - to ensure that only the system can interact with it. - @hide --> - <permission android:name="android.permission.BIND_ROUTE_PROVIDER" - android:label="@string/permlab_bindRouteProvider" - android:description="@string/permdesc_bindRouteProvider" - android:protectionLevel="signature" /> - <!-- Must be required by device administration receiver, to ensure that only the system can interact with it. --> <permission android:name="android.permission.BIND_DEVICE_ADMIN" @@ -2783,13 +2775,6 @@ android:description="@string/permdesc_bindConditionProviderService" android:protectionLevel="signature" /> - <!-- Must be required by a {@link android.media.routing.MediaRouteService}, - to ensure that only the system can bind to it. --> - <permission android:name="android.permission.BIND_MEDIA_ROUTE_SERVICE" - android:label="@string/permlab_bindMediaRouteService" - android:description="@string/permdesc_bindMediaRouteService" - android:protectionLevel="signature" /> - <!-- Must be required by an {@link android.service.dreams.DreamService}, to ensure that only the system can bind to it. --> <permission android:name="android.permission.BIND_DREAM_SERVICE" diff --git a/core/res/res/values/strings.xml b/core/res/res/values/strings.xml index 2936e2b..78ba738 100644 --- a/core/res/res/values/strings.xml +++ b/core/res/res/values/strings.xml @@ -1160,12 +1160,6 @@ interface of a widget service. Should never be needed for normal apps.</string> <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. --> - <string name="permlab_bindRouteProvider">bind to a route provider service</string> - <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. --> - <string name="permdesc_bindRouteProvider">Allows the holder to bind to any registered - route providers. Should never be needed for normal apps.</string> - - <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. --> <string name="permlab_bindDeviceAdmin">interact with a device admin</string> <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. --> <string name="permdesc_bindDeviceAdmin">Allows the holder to send intents to @@ -2157,11 +2151,6 @@ <string name="permdesc_bindConditionProviderService">Allows the holder to bind to the top-level interface of a condition provider service. Should never be needed for normal apps.</string> <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. --> - <string name="permlab_bindMediaRouteService">bind to a media route service</string> - <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. --> - <string name="permdesc_bindMediaRouteService">Allows the holder to bind to the top-level interface of a media route service. Should never be needed for normal apps.</string> - - <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. --> <string name="permlab_bindDreamService">bind to a dream service</string> <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. --> <string name="permdesc_bindDreamService">Allows the holder to bind to the top-level interface of a dream service. Should never be needed for normal apps.</string> |