diff options
author | 2024-01-12 20:10:14 +0000 | |
---|---|---|
committer | 2024-01-15 17:32:46 +0000 | |
commit | 3623aa1323e4eedd836db7a7ceafb19343295a46 (patch) | |
tree | edf1150d86373e33382375f7c562b1925e625b1a /runtime/native/string_array_utils.h | |
parent | f0a31e107973f3bde7dd54cd7610082b104922db (diff) |
Add visibility attributes in runtime/native
Don't add visibility attributes in dalvik_system_VMRuntime.{h,cc} for
now, because it breaks some apps.
Bug: 260881207
Test: launch app from b/319255249
Test: presubmit
Test: abtd app_compat_drm
Test: abtd app_compat_top_100
Test: abtd app_compat_banking
Change-Id: I538c4f82a753c71fb9d008762d09ada5e1273427
Diffstat (limited to 'runtime/native/string_array_utils.h')
-rw-r--r-- | runtime/native/string_array_utils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/native/string_array_utils.h b/runtime/native/string_array_utils.h index 41d50933f9..f1fbe540f5 100644 --- a/runtime/native/string_array_utils.h +++ b/runtime/native/string_array_utils.h @@ -17,13 +17,14 @@ #ifndef ART_RUNTIME_NATIVE_STRING_ARRAY_UTILS_H_ #define ART_RUNTIME_NATIVE_STRING_ARRAY_UTILS_H_ +#include "base/macros.h" #include "base/locks.h" #include "class_root-inl.h" #include "handle_scope-inl.h" #include "mirror/object_array-alloc-inl.h" #include "mirror/string.h" -namespace art { +namespace art HIDDEN { namespace detail { |