diff options
Diffstat (limited to 'runtime/oat_file.h')
| -rw-r--r-- | runtime/oat_file.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/oat_file.h b/runtime/oat_file.h index b99bcb5f7d..63a0e14bf3 100644 --- a/runtime/oat_file.h +++ b/runtime/oat_file.h @@ -301,6 +301,10 @@ class OatFile { // error and sets found to false. static OatClass FindOatClass(const DexFile& dex_file, uint16_t class_def_idx, bool* found); + VdexFile* GetVdexFile() const { + return vdex_.get(); + } + protected: OatFile(const std::string& filename, bool executable); |