summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorYoungsang Cho <youngsang@google.com>2014-07-16 18:45:09 -0700
committerYoungsang Cho <youngsang@google.com>2014-07-17 20:27:46 -0700
commit6440db358c6aac2c1b5752e25c9386bae824bfd4 (patch)
tree56fedfd764e2e0a1901dadc6b259daa144950ff1 /media
parent56d77b9c8325bd2f88c5214b670ac37c2b7460a3 (diff)
downloadframeworks_base-6440db358c6aac2c1b5752e25c9386bae824bfd4.zip
frameworks_base-6440db358c6aac2c1b5752e25c9386bae824bfd4.tar.gz
frameworks_base-6440db358c6aac2c1b5752e25c9386bae824bfd4.tar.bz2
TIF: Hide TvContract.Channels.COLUMN_BROWSABLE
TODO: Remove BROWSABLE in TvContract, TvProvider and TV app. Bug: 16195951 Change-Id: I20e8e1e2f93e0133eba3694e0c1724d443250e59
Diffstat (limited to 'media')
-rw-r--r--media/java/android/media/tv/TvContract.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/media/java/android/media/tv/TvContract.java b/media/java/android/media/tv/TvContract.java
index 8a2ee8e..7d189e4 100644
--- a/media/java/android/media/tv/TvContract.java
+++ b/media/java/android/media/tv/TvContract.java
@@ -128,12 +128,12 @@ public final class TvContract {
}
/**
- * Builds a URI that points to all browsable channels from a given TV input.
+ * Builds a URI that points to all channels from a given TV input.
*
* @param inputId The ID of the TV input to build a channels URI for.
*/
public static final Uri buildChannelsUriForInput(String inputId) {
- return buildChannelsUriForInput(inputId, true);
+ return buildChannelsUriForInput(inputId, false);
}
/**
@@ -143,6 +143,7 @@ public final class TvContract {
* @param browsableOnly If set to {@code true} the URI points to only browsable channels. If set
* to {@code false} the URI points to all channels regardless of whether they are
* browsable or not.
+ * @hide
*/
public static final Uri buildChannelsUriForInput(String inputId, boolean browsableOnly) {
return new Uri.Builder().scheme(ContentResolver.SCHEME_CONTENT).authority(AUTHORITY)
@@ -656,6 +657,7 @@ public final class TvContract {
* </p><p>
* Type: INTEGER (boolean)
* </p>
+ * @hide
*/
public static final String COLUMN_BROWSABLE = "browsable";