- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
28 lines
628 B
Java
28 lines
628 B
Java
package androidx.webkit;
|
|
|
|
import android.webkit.CookieManager;
|
|
import android.webkit.GeolocationPermissions;
|
|
import android.webkit.ServiceWorkerController;
|
|
import android.webkit.WebStorage;
|
|
import androidx.annotation.NonNull;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface Profile {
|
|
public static final String DEFAULT_PROFILE_NAME = "Default";
|
|
|
|
@NonNull
|
|
CookieManager getCookieManager();
|
|
|
|
@NonNull
|
|
GeolocationPermissions getGeolocationPermissions();
|
|
|
|
@NonNull
|
|
String getName();
|
|
|
|
@NonNull
|
|
ServiceWorkerController getServiceWorkerController();
|
|
|
|
@NonNull
|
|
WebStorage getWebStorage();
|
|
}
|