diff options
Diffstat (limited to 'runtime/mirror/class_loader.h')
-rw-r--r-- | runtime/mirror/class_loader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/mirror/class_loader.h b/runtime/mirror/class_loader.h index 415cb67c6c..69accf5834 100644 --- a/runtime/mirror/class_loader.h +++ b/runtime/mirror/class_loader.h @@ -32,9 +32,9 @@ namespace mirror { class MANAGED ClassLoader : public Object { private: // Field order required by test "ValidateFieldOrderOfJavaCppUnionClasses". - Object* packages_; - ClassLoader* parent_; - Object* proxyCache_; + HeapReference<Object> packages_; + HeapReference<ClassLoader> parent_; + HeapReference<Object> proxyCache_; friend struct art::ClassLoaderOffsets; // for verifying offset information DISALLOW_IMPLICIT_CONSTRUCTORS(ClassLoader); |