summaryrefslogtreecommitdiff
path: root/runtime/common_runtime_test.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/common_runtime_test.h')
-rw-r--r--runtime/common_runtime_test.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/common_runtime_test.h b/runtime/common_runtime_test.h
index 5416cb493c..7c20de30fd 100644
--- a/runtime/common_runtime_test.h
+++ b/runtime/common_runtime_test.h
@@ -190,6 +190,10 @@ class CommonRuntimeTestImpl : public CommonArtTestImpl {
dexes, out_file, method_frequency, type_frequency, /*for_boot_image=*/ true);
}
+ ObjPtr<mirror::Class> FindClass(const char* descriptor,
+ Handle<mirror::ClassLoader> class_loader) const
+ REQUIRES_SHARED(Locks::mutator_lock_);
+
std::unique_ptr<Runtime> runtime_;
// The class_linker_, java_lang_dex_file_, and boot_class_path_ are all
@@ -202,7 +206,7 @@ class CommonRuntimeTestImpl : public CommonArtTestImpl {
// This only looks into the current class loader and does not recurse into the parents.
std::vector<const DexFile*> GetDexFiles(jobject jclass_loader);
std::vector<const DexFile*> GetDexFiles(Thread* self, Handle<mirror::ClassLoader> class_loader)
- REQUIRES_SHARED(Locks::mutator_lock_);
+ REQUIRES_SHARED(Locks::mutator_lock_);
// Get the first dex file from a PathClassLoader. Will abort if it is null.
const DexFile* GetFirstDexFile(jobject jclass_loader);