- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
19 lines
650 B
Java
19 lines
650 B
Java
package com.facebook.ads.internal.api;
|
|
|
|
import android.content.Context;
|
|
import androidx.annotation.Keep;
|
|
import com.facebook.ads.MediaViewVideoRenderer;
|
|
import com.facebook.infer.annotation.Nullsafe;
|
|
|
|
@Keep
|
|
@Nullsafe(Nullsafe.Mode.LOCAL)
|
|
/* loaded from: classes2.dex */
|
|
public interface DefaultMediaViewVideoRendererApi {
|
|
public static final int MEDIA_VIEW_RENDERER_CHILD_TYPE_BACKGROUND_PLAYBACK = 1;
|
|
public static final int MEDIA_VIEW_RENDERER_CHILD_TYPE_DEFAULT = 0;
|
|
|
|
void initialize(Context context, MediaViewVideoRenderer mediaViewVideoRenderer, MediaViewVideoRendererApi mediaViewVideoRendererApi, int i);
|
|
|
|
void onPrepared();
|
|
}
|