summaryrefslogtreecommitdiffstats
path: root/runtime/runtime.h
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2014-09-29 11:22:54 -0700
committerBrian Carlstrom <bdc@google.com>2014-09-30 21:49:43 -0700
commit31d8f5295c24730a57cb36cbc41197f0b7e8397c (patch)
treee37953f590f924e06b9905f922407559a3661cb6 /runtime/runtime.h
parent8283e079a209e81caafd123a12a525922368fd34 (diff)
downloadart-31d8f5295c24730a57cb36cbc41197f0b7e8397c.tar.gz
art-31d8f5295c24730a57cb36cbc41197f0b7e8397c.tar.bz2
art-31d8f5295c24730a57cb36cbc41197f0b7e8397c.zip
Add VMRuntime.isBootClassPathOnDisk
Bug: 17679443 (cherry picked from commit 95a935415d44903b28326424beb4db5c013ef089) Change-Id: Iba40291dead3f0b6715903c986370fd0cf1e41e1
Diffstat (limited to 'runtime/runtime.h')
-rw-r--r--runtime/runtime.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h
index 35e3a8896c..1a6c6e0c54 100644
--- a/runtime/runtime.h
+++ b/runtime/runtime.h
@@ -137,6 +137,10 @@ class Runtime {
return image_compiler_options_;
}
+ const std::string& GetImageLocation() const {
+ return image_location_;
+ }
+
const ProfilerOptions& GetProfilerOptions() const {
return profiler_options_;
}
@@ -537,6 +541,7 @@ class Runtime {
std::string patchoat_executable_;
std::vector<std::string> compiler_options_;
std::vector<std::string> image_compiler_options_;
+ std::string image_location_;
std::string boot_class_path_string_;
std::string class_path_string_;