20 lines
471 B
Java
20 lines
471 B
Java
package androidx.tracing;
|
|
|
|
/* loaded from: classes.dex */
|
|
final class TraceApi29Impl {
|
|
private TraceApi29Impl() {
|
|
}
|
|
|
|
public static void beginAsyncSection(String str, int i) {
|
|
android.os.Trace.beginAsyncSection(str, i);
|
|
}
|
|
|
|
public static void endAsyncSection(String str, int i) {
|
|
android.os.Trace.endAsyncSection(str, i);
|
|
}
|
|
|
|
public static void setCounter(String str, int i) {
|
|
android.os.Trace.setCounter(str, i);
|
|
}
|
|
}
|