- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
70 lines
1.4 KiB
Java
70 lines
1.4 KiB
Java
package com.tapjoy;
|
|
|
|
import android.content.Context;
|
|
import android.webkit.WebView;
|
|
import androidx.annotation.Nullable;
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public abstract class TJJSBridgeDelegate {
|
|
public boolean dismiss() {
|
|
return false;
|
|
}
|
|
|
|
public boolean fireContentError(TJError tJError) {
|
|
return false;
|
|
}
|
|
|
|
public boolean fireContentReady() {
|
|
return false;
|
|
}
|
|
|
|
public abstract Context getContext();
|
|
|
|
public <T> T getData(String str, Class<T> cls) {
|
|
return null;
|
|
}
|
|
|
|
public Map<String, Object> getOrientation() {
|
|
return null;
|
|
}
|
|
|
|
public int getStatusBarHeight() {
|
|
return 0;
|
|
}
|
|
|
|
public void getTextZoom(TJTaskHandler<Float> tJTaskHandler) {
|
|
tJTaskHandler.onComplete(Float.valueOf(1.0f));
|
|
}
|
|
|
|
@Nullable
|
|
public abstract WebView getWebView();
|
|
|
|
public void setBackgroundColor(String str, TJTaskHandler<Boolean> tJTaskHandler) {
|
|
tJTaskHandler.onComplete(Boolean.FALSE);
|
|
}
|
|
|
|
public void setCloseButtonClickable(boolean z) {
|
|
}
|
|
|
|
public void setCloseButtonVisible(boolean z) {
|
|
}
|
|
|
|
public boolean setOrientation(int i) {
|
|
return false;
|
|
}
|
|
|
|
public void setTextZoom(float f) {
|
|
}
|
|
|
|
public void setupSdkBeacons(com.tapjoy.internal.z0 z0Var) {
|
|
}
|
|
|
|
public void shouldClose(boolean z) {
|
|
}
|
|
|
|
public boolean unsetOrientation() {
|
|
return false;
|
|
}
|
|
}
|