diff options
Diffstat (limited to 'runtime/hidden_api.h')
| -rw-r--r-- | runtime/hidden_api.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/runtime/hidden_api.h b/runtime/hidden_api.h index 4325496ca3..e117c08c25 100644 --- a/runtime/hidden_api.h +++ b/runtime/hidden_api.h @@ -52,13 +52,11 @@ enum Action { kDeny }; -// Do not change the values of items in this enum, as they are written to the -// event log for offline analysis. Any changes will interfere with that analysis. enum AccessMethod { - kNone = 0, // internal test that does not correspond to an actual access by app - kReflection = 1, - kJNI = 2, - kLinking = 3, + kNone, // internal test that does not correspond to an actual access by app + kReflection, + kJNI, + kLinking, }; // Do not change the values of items in this enum, as they are written to the |