Commit b48ceb19 by tonihei Committed by Oliver Woodman

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
parent 0624046a
...@@ -17,7 +17,6 @@ package com.google.android.exoplayer2.ui; ...@@ -17,7 +17,6 @@ package com.google.android.exoplayer2.ui;
import android.content.Context; import android.content.Context;
import android.util.AttributeSet; import android.util.AttributeSet;
import com.google.android.exoplayer2.util.RepeatModeUtil;
/** @deprecated Use {@link PlayerControlView}. */ /** @deprecated Use {@link PlayerControlView}. */
@Deprecated @Deprecated
...@@ -27,13 +26,6 @@ public class PlaybackControlView extends PlayerControlView { ...@@ -27,13 +26,6 @@ public class PlaybackControlView extends PlayerControlView {
@Deprecated @Deprecated
public interface ControlDispatcher extends com.google.android.exoplayer2.ControlDispatcher {} 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 @Deprecated
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
private static final class DefaultControlDispatcher private static final class DefaultControlDispatcher
...@@ -43,20 +35,6 @@ public class PlaybackControlView extends PlayerControlView { ...@@ -43,20 +35,6 @@ public class PlaybackControlView extends PlayerControlView {
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
public static final ControlDispatcher DEFAULT_CONTROL_DISPATCHER = new DefaultControlDispatcher(); 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) { public PlaybackControlView(Context context) {
super(context); super(context);
} }
...@@ -73,5 +51,4 @@ public class PlaybackControlView extends PlayerControlView { ...@@ -73,5 +51,4 @@ public class PlaybackControlView extends PlayerControlView {
Context context, AttributeSet attrs, int defStyleAttr, AttributeSet playbackAttrs) { Context context, AttributeSet attrs, int defStyleAttr, AttributeSet playbackAttrs) {
super(context, attrs, defStyleAttr, playbackAttrs); super(context, attrs, defStyleAttr, playbackAttrs);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment