diff options
Diffstat (limited to 'runtime/hidden_api.h')
| -rw-r--r-- | runtime/hidden_api.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/runtime/hidden_api.h b/runtime/hidden_api.h index 8bd59ea90a..e15e9f38aa 100644 --- a/runtime/hidden_api.h +++ b/runtime/hidden_api.h @@ -45,11 +45,13 @@ inline EnforcementPolicy EnforcementPolicyFromInt(int api_policy_int) { return static_cast<EnforcementPolicy>(api_policy_int); } +// Hidden API access method +// Thist must be kept in sync with VMRuntime.HiddenApiUsageLogger.ACCESS_METHOD_* enum class AccessMethod { - kNone, // internal test that does not correspond to an actual access by app - kReflection, - kJNI, - kLinking, + kNone = 0, // internal test that does not correspond to an actual access by app + kReflection = 1, + kJNI = 2, + kLinking = 3, }; // Represents the API domain of a caller/callee. |