Files
codeql/java/ql/test/stubs/google-android-9.0.0/android/view/displayhash/DisplayHashResultCallback.java
Tony Torralba a59a4024a5 Update stubs
2022-01-14 10:32:36 +01:00

18 lines
651 B
Java
Generated

// Generated automatically from android.view.displayhash.DisplayHashResultCallback for testing purposes
package android.view.displayhash;
import android.view.displayhash.DisplayHash;
public interface DisplayHashResultCallback
{
static int DISPLAY_HASH_ERROR_INVALID_BOUNDS = 0;
static int DISPLAY_HASH_ERROR_INVALID_HASH_ALGORITHM = 0;
static int DISPLAY_HASH_ERROR_MISSING_WINDOW = 0;
static int DISPLAY_HASH_ERROR_NOT_VISIBLE_ON_SCREEN = 0;
static int DISPLAY_HASH_ERROR_TOO_MANY_REQUESTS = 0;
static int DISPLAY_HASH_ERROR_UNKNOWN = 0;
void onDisplayHashError(int p0);
void onDisplayHashResult(DisplayHash p0);
}