diff options
Diffstat (limited to 'runtime/runtime.h')
| -rw-r--r-- | runtime/runtime.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h index b7f377ddf9..afa8e4818b 100644 --- a/runtime/runtime.h +++ b/runtime/runtime.h @@ -36,7 +36,6 @@ #include "object_callbacks.h" #include "offsets.h" #include "process_state.h" -#include "profiler_options.h" #include "quick/quick_method_frame_info.h" #include "runtime_stats.h" #include "safe_map.h" @@ -192,10 +191,6 @@ class Runtime { return image_location_; } - const ProfilerOptions& GetProfilerOptions() const { - return profiler_options_; - } - // Starts a runtime, which may cause threads to be started and code to run. bool Start() UNLOCK_FUNCTION(Locks::mutator_lock_); @@ -455,8 +450,6 @@ class Runtime { // Returns true if JIT compilations are enabled. GetJit() will be not null in this case. bool UseJitCompilation() const; - // Returns true if profile saving is enabled. GetJit() will be not null in this case. - bool SaveProfileInfo() const; void PreZygoteFork(); bool InitZygote(); @@ -782,9 +775,6 @@ class Runtime { const bool is_running_on_memory_tool_; - std::string profile_output_filename_; - ProfilerOptions profiler_options_; - std::unique_ptr<TraceConfig> trace_config_; instrumentation::Instrumentation instrumentation_; |