NewPipe/app/src/main/java/org/schabi/newpipe/player/PlayerServiceBinder.java

18 lines
334 B
Java

package org.schabi.newpipe.player;
import android.os.Binder;
import androidx.annotation.NonNull;
class PlayerServiceBinder extends Binder {
private final Player player;
PlayerServiceBinder(@NonNull final Player player) {
this.player = player;
}
Player getPlayerInstance() {
return player;
}
}