Files
rr3-apk/decompiled/sources/com/google/android/gms/ads/VideoOptions.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

65 lines
1.5 KiB
Java

package com.google.android.gms.ads;
import androidx.annotation.NonNull;
import com.google.android.gms.ads.internal.client.zzga;
/* loaded from: classes2.dex */
public final class VideoOptions {
private final boolean zza;
private final boolean zzb;
private final boolean zzc;
public static final class Builder {
private boolean zza = true;
private boolean zzb = false;
private boolean zzc = false;
@NonNull
public VideoOptions build() {
return new VideoOptions(this, null);
}
@NonNull
public Builder setClickToExpandRequested(boolean z) {
this.zzc = z;
return this;
}
@NonNull
public Builder setCustomControlsRequested(boolean z) {
this.zzb = z;
return this;
}
@NonNull
public Builder setStartMuted(boolean z) {
this.zza = z;
return this;
}
}
public /* synthetic */ VideoOptions(Builder builder, zzj zzjVar) {
this.zza = builder.zza;
this.zzb = builder.zzb;
this.zzc = builder.zzc;
}
public VideoOptions(zzga zzgaVar) {
this.zza = zzgaVar.zza;
this.zzb = zzgaVar.zzb;
this.zzc = zzgaVar.zzc;
}
public boolean getClickToExpandRequested() {
return this.zzc;
}
public boolean getCustomControlsRequested() {
return this.zzb;
}
public boolean getStartMuted() {
return this.zza;
}
}