diff options
| author | 2019-01-07 10:19:49 -0800 | |
|---|---|---|
| committer | 2019-01-09 12:38:30 -0800 | |
| commit | 49b74a8c685acfe43dd33e3f51a24c486388bee1 (patch) | |
| tree | 2c88245108b612904d1b3e377725894574ec1eed /runtime/class_linker.h | |
| parent | a1ffdba7e285435cbb3538473f25eb7cb47cfd66 (diff) | |
ART: Remove thread from class.h
Move only dependent functions to the inl.
Bug: 119869270
Test: mmma art
Change-Id: Ic2ceba1563ac44048afec6df1bccda91ceb42782
Diffstat (limited to 'runtime/class_linker.h')
| -rw-r--r-- | runtime/class_linker.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/class_linker.h b/runtime/class_linker.h index f023a39b88..4f4cb4b942 100644 --- a/runtime/class_linker.h +++ b/runtime/class_linker.h @@ -17,6 +17,7 @@ #ifndef ART_RUNTIME_CLASS_LINKER_H_ #define ART_RUNTIME_CLASS_LINKER_H_ +#include <list> #include <set> #include <string> #include <unordered_map> @@ -89,6 +90,7 @@ template<class T> class ObjectLock; class Runtime; class ScopedObjectAccessAlreadyRunnable; template<size_t kNumReferences> class PACKED(4) StackHandleScope; +class Thread; enum VisitRootFlags : uint8_t; |