blob: 8d90d39142706ca0f3c0a1b2e4c0c8401a066006 [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.base.test;
import org.jni_zero.JNINamespace;
import org.jni_zero.NativeMethods;
/** Class containing only static methods for querying the status of the reached code profiler. */
@JNINamespace("base::android")
public class ReachedCodeProfiler {
private ReachedCodeProfiler() {}
/**
* @return Whether the reached code profiler is enabled.
*/
public static boolean isEnabled() {
return ReachedCodeProfilerJni.get().isReachedCodeProfilerEnabled();
}
/**
* @return Whether the currently used version of native library supports the reached code
* profiler.
*/
public static boolean isSupported() {
return ReachedCodeProfilerJni.get().isReachedCodeProfilerSupported();
}
@NativeMethods
interface Natives {
boolean isReachedCodeProfilerEnabled();
boolean isReachedCodeProfilerSupported();
}
}