Merge "Libcore: Fix or suppress EqualsNaN warning in tests"
diff --git a/libart/src/main/java/dalvik/system/VMRuntime.java b/libart/src/main/java/dalvik/system/VMRuntime.java
index d553846..737de65 100644
--- a/libart/src/main/java/dalvik/system/VMRuntime.java
+++ b/libart/src/main/java/dalvik/system/VMRuntime.java
@@ -259,6 +259,12 @@
     public native void disableJitCompilation();
 
     /**
+     * Returns true if the app has accessed a hidden API. This does not include
+     * attempts which have been blocked.
+     */
+    public native boolean hasUsedHiddenApi();
+
+    /**
      * Returns an array allocated in an area of the Java heap where it will never be moved.
      * This is used to implement native allocations on the Java heap, such as DirectByteBuffers
      * and Bitmaps.