- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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() {
|
|
}
|
|
}
|
|
}
|