- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
28 lines
1.1 KiB
Java
28 lines
1.1 KiB
Java
package com.unity3d.ads.adplayer;
|
|
|
|
import androidx.annotation.CallSuper;
|
|
import com.unity3d.ads.adplayer.AdPlayer;
|
|
import kotlin.Unit;
|
|
import kotlin.coroutines.Continuation;
|
|
import kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsKt;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public interface EmbeddableAdPlayer extends AdPlayer {
|
|
|
|
public static final class DefaultImpls {
|
|
@CallSuper
|
|
public static Object destroy(EmbeddableAdPlayer embeddableAdPlayer, Continuation continuation) {
|
|
Object coroutine_suspended;
|
|
Object destroy = AdPlayer.DefaultImpls.destroy(embeddableAdPlayer, continuation);
|
|
coroutine_suspended = IntrinsicsKt__IntrinsicsKt.getCOROUTINE_SUSPENDED();
|
|
return destroy == coroutine_suspended ? destroy : Unit.INSTANCE;
|
|
}
|
|
|
|
public static void show(EmbeddableAdPlayer embeddableAdPlayer, ShowOptions showOptions) {
|
|
Intrinsics.checkNotNullParameter(showOptions, "showOptions");
|
|
AdPlayer.DefaultImpls.show(embeddableAdPlayer, showOptions);
|
|
}
|
|
}
|
|
}
|