diff options
author | 2017-07-18 16:53:49 -0700 | |
---|---|---|
committer | 2017-07-18 18:25:55 -0700 | |
commit | e431e2758d62cf56f7f347f5a8c9d79e41b6dcd7 (patch) | |
tree | b8733533e2478069aabbdc3a34d0f40aff33e1b1 /runtime/gc/reference_processor.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/gc/reference_processor.cc')
-rw-r--r-- | runtime/gc/reference_processor.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/reference_processor.cc b/runtime/gc/reference_processor.cc index 52da7632f0..42b31ab140 100644 --- a/runtime/gc/reference_processor.cc +++ b/runtime/gc/reference_processor.cc @@ -22,10 +22,10 @@ #include "mirror/class-inl.h" #include "mirror/object-inl.h" #include "mirror/reference-inl.h" +#include "nativehelper/ScopedLocalRef.h" #include "object_callbacks.h" #include "reference_processor-inl.h" #include "reflection.h" -#include "ScopedLocalRef.h" #include "scoped_thread_state_change-inl.h" #include "task_processor.h" #include "utils.h" |