Remove unneccessary deprecated constants and classes.

This constants and classes are defined by the same name in the super class and
thus can be safely removed.

PiperOrigin-RevId: 236136197
This commit is contained in:
tonihei 2019-02-28 17:27:13 +00:00 committed by Oliver Woodman
parent 0624046a7b
commit b48ceb19bd

View File

@ -17,7 +17,6 @@ package com.google.android.exoplayer2.ui;
import android.content.Context;
import android.util.AttributeSet;
import com.google.android.exoplayer2.util.RepeatModeUtil;
/** @deprecated Use {@link PlayerControlView}. */
@Deprecated
@ -27,13 +26,6 @@ public class PlaybackControlView extends PlayerControlView {
@Deprecated
public interface ControlDispatcher extends com.google.android.exoplayer2.ControlDispatcher {}
/**
* @deprecated Use {@link com.google.android.exoplayer2.ui.PlayerControlView.VisibilityListener}.
*/
@Deprecated
public interface VisibilityListener
extends com.google.android.exoplayer2.ui.PlayerControlView.VisibilityListener {}
@Deprecated
@SuppressWarnings("deprecation")
private static final class DefaultControlDispatcher
@ -43,20 +35,6 @@ public class PlaybackControlView extends PlayerControlView {
@SuppressWarnings("deprecation")
public static final ControlDispatcher DEFAULT_CONTROL_DISPATCHER = new DefaultControlDispatcher();
/** The default fast forward increment, in milliseconds. */
public static final int DEFAULT_FAST_FORWARD_MS = PlayerControlView.DEFAULT_FAST_FORWARD_MS;
/** The default rewind increment, in milliseconds. */
public static final int DEFAULT_REWIND_MS = PlayerControlView.DEFAULT_REWIND_MS;
/** The default show timeout, in milliseconds. */
public static final int DEFAULT_SHOW_TIMEOUT_MS = PlayerControlView.DEFAULT_SHOW_TIMEOUT_MS;
/** The default repeat toggle modes. */
public static final @RepeatModeUtil.RepeatToggleModes int DEFAULT_REPEAT_TOGGLE_MODES =
PlayerControlView.DEFAULT_REPEAT_TOGGLE_MODES;
/** The maximum number of windows that can be shown in a multi-window time bar. */
public static final int MAX_WINDOWS_FOR_MULTI_WINDOW_TIME_BAR =
PlayerControlView.MAX_WINDOWS_FOR_MULTI_WINDOW_TIME_BAR;
public PlaybackControlView(Context context) {
super(context);
}
@ -73,5 +51,4 @@ public class PlaybackControlView extends PlayerControlView {
Context context, AttributeSet attrs, int defStyleAttr, AttributeSet playbackAttrs) {
super(context, attrs, defStyleAttr, playbackAttrs);
}
}