- 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
34 lines
908 B
Java
34 lines
908 B
Java
package androidx.webkit;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.annotation.RestrictTo;
|
|
import androidx.webkit.internal.TracingControllerImpl;
|
|
import java.io.OutputStream;
|
|
import java.util.concurrent.Executor;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class TracingController {
|
|
public abstract boolean isTracing();
|
|
|
|
public abstract void start(@NonNull TracingConfig tracingConfig);
|
|
|
|
public abstract boolean stop(@Nullable OutputStream outputStream, @NonNull Executor executor);
|
|
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY})
|
|
public TracingController() {
|
|
}
|
|
|
|
@NonNull
|
|
public static TracingController getInstance() {
|
|
return LAZY_HOLDER.INSTANCE;
|
|
}
|
|
|
|
public static class LAZY_HOLDER {
|
|
static final TracingController INSTANCE = new TracingControllerImpl();
|
|
|
|
private LAZY_HOLDER() {
|
|
}
|
|
}
|
|
}
|