diff options
author | 2018-10-17 18:00:06 +0100 | |
---|---|---|
committer | 2018-11-14 16:49:40 +0000 | |
commit | f50ac103426588d9f7c014ef2d2b9c766f8dc25e (patch) | |
tree | bac6537c3cd63cc382e24d9b94f0eb64f18ab0a4 /runtime/dexopt_test.cc | |
parent | b56e8353020acda1a8285daa11c69f57060cd015 (diff) |
Simplify hidden_api.h logic
Refactor GetMemberAction to return a boolean whether access to a class
member should be denied. This also moves StrictMode consumer
notification into hidden_api.cc and removes notifications for toasts.
Tests are changed accordingly.
Test: phone boots
Test: m test-art
Merged-In: I02902143de0ff91d402ba79c83f28226b1822a6f
Change-Id: I02902143de0ff91d402ba79c83f28226b1822a6f
(cherry picked from commit 51995f90adaa0e5047dee56d22f15e4225e70517)
Diffstat (limited to 'runtime/dexopt_test.cc')
-rw-r--r-- | runtime/dexopt_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/dexopt_test.cc b/runtime/dexopt_test.cc index ed3a18db28..b11e368871 100644 --- a/runtime/dexopt_test.cc +++ b/runtime/dexopt_test.cc @@ -66,7 +66,7 @@ bool DexoptTest::Dex2Oat(const std::vector<std::string>& args, std::string* erro } runtime->AddCurrentRuntimeFeaturesAsDex2OatArguments(&argv); - if (runtime->GetHiddenApiEnforcementPolicy() != hiddenapi::EnforcementPolicy::kNoChecks) { + if (runtime->GetHiddenApiEnforcementPolicy() != hiddenapi::EnforcementPolicy::kDisabled) { argv.push_back("--runtime-arg"); argv.push_back("-Xhidden-api-checks"); } |