Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6440db35 authored by Youngsang Cho's avatar Youngsang Cho
Browse files

TIF: Hide TvContract.Channels.COLUMN_BROWSABLE

TODO: Remove BROWSABLE in TvContract, TvProvider and TV app.

Bug: 16195951
Change-Id: I20e8e1e2f93e0133eba3694e0c1724d443250e59
parent 56d77b9c
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -16465,7 +16465,6 @@ package android.media.tv {
    method public static final android.net.Uri buildChannelLogoUri(android.net.Uri);
    method public static final android.net.Uri buildChannelUri(long);
    method public static final android.net.Uri buildChannelsUriForInput(java.lang.String);
    method public static final android.net.Uri buildChannelsUriForInput(java.lang.String, boolean);
    method public static final java.lang.String buildInputId(android.content.ComponentName);
    method public static final android.net.Uri buildProgramUri(long);
    method public static final android.net.Uri buildProgramsUriForChannel(long);
@@ -16481,7 +16480,6 @@ package android.media.tv {
  public static final class TvContract.Channels implements android.media.tv.TvContract.BaseTvColumns {
    method public static final java.lang.String getVideoResolution(java.lang.String);
    field public static final java.lang.String COLUMN_BROWSABLE = "browsable";
    field public static final java.lang.String COLUMN_CONDITIONAL_ACCESS = "conditional_access";
    field public static final java.lang.String COLUMN_DESCRIPTION = "description";
    field public static final java.lang.String COLUMN_DISPLAY_NAME = "display_name";
+4 −2
Original line number Diff line number Diff line
@@ -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";