From 788f74740b2e560af255ab948a4bc64d116633ca Mon Sep 17 00:00:00 2001 From: michaelkatz Date: Tue, 22 Nov 2022 09:41:40 +0000 Subject: [PATCH] Fixed Exoplayer imports for SimpleBasePlayerTest PiperOrigin-RevId: 490181547 --- .../google/android/exoplayer2/SimpleBasePlayerTest.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/library/common/src/test/java/com/google/android/exoplayer2/SimpleBasePlayerTest.java b/library/common/src/test/java/com/google/android/exoplayer2/SimpleBasePlayerTest.java index 0fb17455b5..41e49bd0ab 100644 --- a/library/common/src/test/java/com/google/android/exoplayer2/SimpleBasePlayerTest.java +++ b/library/common/src/test/java/com/google/android/exoplayer2/SimpleBasePlayerTest.java @@ -33,10 +33,17 @@ import androidx.test.ext.junit.runners.AndroidJUnit4; import com.google.android.exoplayer2.Player.Commands; import com.google.android.exoplayer2.Player.Listener; import com.google.android.exoplayer2.SimpleBasePlayer.State; +import com.google.android.exoplayer2.audio.AudioAttributes; +import com.google.android.exoplayer2.metadata.Metadata; +import com.google.android.exoplayer2.source.TrackGroup; +import com.google.android.exoplayer2.source.ads.AdPlaybackState; import com.google.android.exoplayer2.testutil.FakeMetadataEntry; import com.google.android.exoplayer2.text.Cue; import com.google.android.exoplayer2.text.CueGroup; +import com.google.android.exoplayer2.trackselection.TrackSelectionParameters; +import com.google.android.exoplayer2.util.FlagSet; import com.google.android.exoplayer2.util.Size; +import com.google.android.exoplayer2.video.VideoSize; import com.google.common.collect.ImmutableList; import com.google.common.util.concurrent.Futures; import com.google.common.util.concurrent.ListenableFuture;