diff options
author | Steven Moreland <smoreland@google.com> | 2017-07-18 16:53:49 -0700 |
---|---|---|
committer | Steven Moreland <smoreland@google.com> | 2017-07-18 18:25:55 -0700 |
commit | e431e2758d62cf56f7f347f5a8c9d79e41b6dcd7 (patch) | |
tree | b8733533e2478069aabbdc3a34d0f40aff33e1b1 /runtime/native/java_lang_Thread.cc | |
parent | b98d384eb424ad7e1dc9816392ded33dce0e0372 (diff) |
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
Diffstat (limited to 'runtime/native/java_lang_Thread.cc')
-rw-r--r-- | runtime/native/java_lang_Thread.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/runtime/native/java_lang_Thread.cc b/runtime/native/java_lang_Thread.cc index 4ce72edd7b..4fbbb72631 100644 --- a/runtime/native/java_lang_Thread.cc +++ b/runtime/native/java_lang_Thread.cc @@ -16,16 +16,15 @@ #include "java_lang_Thread.h" -#include "nativehelper/jni_macros.h" - #include "common_throws.h" #include "jni_internal.h" -#include "monitor.h" #include "mirror/object.h" +#include "monitor.h" #include "native_util.h" +#include "nativehelper/jni_macros.h" +#include "nativehelper/ScopedUtfChars.h" #include "scoped_fast_native_object_access-inl.h" #include "scoped_thread_state_change-inl.h" -#include "ScopedUtfChars.h" #include "thread.h" #include "thread_list.h" #include "verify_object.h" |