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/java_vm_ext.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/java_vm_ext.cc') diff --git a/runtime/java_vm_ext.cc b/runtime/java_vm_ext.cc index 2ad3b29f17..267f9fdc99 100644 --- a/runtime/java_vm_ext.cc +++ b/runtime/java_vm_ext.cc @@ -34,17 +34,17 @@ #include "mirror/class-inl.h" #include "mirror/class_loader.h" #include "nativebridge/native_bridge.h" +#include "nativehelper/ScopedLocalRef.h" #include "nativeloader/native_loader.h" #include "object_callbacks.h" #include "parsed_options.h" #include "runtime-inl.h" #include "runtime_options.h" -#include "ScopedLocalRef.h" #include "scoped_thread_state_change-inl.h" #include "sigchain.h" -#include "ti/agent.h" #include "thread-inl.h" #include "thread_list.h" +#include "ti/agent.h" namespace art { -- cgit v1.2.3-59-g8ed1b