Files
rr3-apk/decompiled/sources/com/ironsource/dp.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

56 lines
2.1 KiB
Java

package com.ironsource;
import com.ironsource.mediationsdk.logger.IronSourceError;
import com.unity3d.ironsourceads.rewarded.RewardedAd;
import com.unity3d.ironsourceads.rewarded.RewardedAdLoaderListener;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class dp implements p0<RewardedAd> {
private final jt a;
private final RewardedAdLoaderListener b;
public dp(jt threadManager, RewardedAdLoaderListener publisherListener) {
Intrinsics.checkNotNullParameter(threadManager, "threadManager");
Intrinsics.checkNotNullParameter(publisherListener, "publisherListener");
this.a = threadManager;
this.b = publisherListener;
}
/* JADX INFO: Access modifiers changed from: private */
public static final void a(dp this$0, IronSourceError error) {
Intrinsics.checkNotNullParameter(this$0, "this$0");
Intrinsics.checkNotNullParameter(error, "$error");
this$0.b.onRewardedAdLoadFailed(error);
}
/* JADX INFO: Access modifiers changed from: private */
public static final void a(dp this$0, RewardedAd adObject) {
Intrinsics.checkNotNullParameter(this$0, "this$0");
Intrinsics.checkNotNullParameter(adObject, "$adObject");
this$0.b.onRewardedAdLoaded(adObject);
}
@Override // com.ironsource.p0
public void a(final RewardedAd adObject) {
Intrinsics.checkNotNullParameter(adObject, "adObject");
this.a.a(new Runnable() { // from class: com.ironsource.dp$$ExternalSyntheticLambda0
@Override // java.lang.Runnable
public final void run() {
dp.a(dp.this, adObject);
}
});
}
@Override // com.ironsource.p0
public void onAdLoadFailed(final IronSourceError error) {
Intrinsics.checkNotNullParameter(error, "error");
this.a.a(new Runnable() { // from class: com.ironsource.dp$$ExternalSyntheticLambda1
@Override // java.lang.Runnable
public final void run() {
dp.a(dp.this, error);
}
});
}
}