diff options
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/content/Context.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/java/android/content/Context.java b/core/java/android/content/Context.java index 4527d8ed83aa..8794173cb92e 100644 --- a/core/java/android/content/Context.java +++ b/core/java/android/content/Context.java @@ -3356,6 +3356,7 @@ public abstract class Context { CONSUMER_IR_SERVICE, //@hide: TRUST_SERVICE, TV_INPUT_SERVICE, + //@hide: TV_TUNER_RESOURCE_MGR_SERVICE, //@hide: NETWORK_SCORE_SERVICE, USAGE_STATS_SERVICE, MEDIA_SESSION_SERVICE, @@ -4586,6 +4587,17 @@ public abstract class Context { public static final String TV_INPUT_SERVICE = "tv_input"; /** + * Use with {@link #getSystemService(String)} to retrieve a + * {@link android.media.tv.tunerresourcemanager.TunerResourceManager} for interacting with TV + * tuner resources on the device. + * + * @see #getSystemService(String) + * @see android.media.tv.TunerResourceManager + * @hide + */ + public static final String TV_TUNER_RESOURCE_MGR_SERVICE = "tv_tuner_resource_mgr"; + + /** * {@link android.net.NetworkScoreManager} for managing network scoring. * @see #getSystemService(String) * @see android.net.NetworkScoreManager |
