From e431e2758d62cf56f7f347f5a8c9d79e41b6dcd7 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Tue, 18 Jul 2017 16:53:49 -0700 Subject: art: use proper nativehelper headers libnativeheader exports headers under nativeheader. These were available before incorrectly as global headers in order to give access to jni.h. Test: modules using art find headers Bug: 63762847 Change-Id: I5c820d677e94e07b2859e78610bc997fe51b41dc --- runtime/native/java_lang_VMClassLoader.cc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'runtime/native/java_lang_VMClassLoader.cc') diff --git a/runtime/native/java_lang_VMClassLoader.cc b/runtime/native/java_lang_VMClassLoader.cc index fc50d5584d..745d09d888 100644 --- a/runtime/native/java_lang_VMClassLoader.cc +++ b/runtime/native/java_lang_VMClassLoader.cc @@ -16,17 +16,16 @@ #include "java_lang_VMClassLoader.h" -#include "nativehelper/jni_macros.h" - #include "class_linker.h" #include "jni_internal.h" #include "mirror/class_loader.h" #include "mirror/object-inl.h" #include "native_util.h" +#include "nativehelper/jni_macros.h" +#include "nativehelper/ScopedLocalRef.h" +#include "nativehelper/ScopedUtfChars.h" #include "obj_ptr.h" #include "scoped_fast_native_object_access-inl.h" -#include "ScopedLocalRef.h" -#include "ScopedUtfChars.h" #include "well_known_classes.h" #include "zip_archive.h" -- cgit v1.2.3-59-g8ed1b