diff options
Diffstat (limited to 'runtime/compiler_callbacks.h')
-rw-r--r-- | runtime/compiler_callbacks.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/runtime/compiler_callbacks.h b/runtime/compiler_callbacks.h index 6855dcdb2b..18632dc6c6 100644 --- a/runtime/compiler_callbacks.h +++ b/runtime/compiler_callbacks.h @@ -17,7 +17,7 @@ #ifndef ART_RUNTIME_COMPILER_CALLBACKS_H_ #define ART_RUNTIME_COMPILER_CALLBACKS_H_ -#include "base/mutex.h" +#include "base/locks.h" #include "dex/class_reference.h" #include "class_status.h" @@ -51,10 +51,6 @@ class CompilerCallbacks { REQUIRES_SHARED(Locks::mutator_lock_) = 0; virtual void ClassRejected(ClassReference ref) = 0; - // Return true if we should attempt to relocate to a random base address if we have not already - // done so. Return false if relocating in this way would be problematic. - virtual bool IsRelocationPossible() = 0; - virtual verifier::VerifierDeps* GetVerifierDeps() const = 0; virtual void SetVerifierDeps(verifier::VerifierDeps* deps ATTRIBUTE_UNUSED) {} |