diff options
| author | 2016-06-29 15:28:51 +0000 | |
|---|---|---|
| committer | 2016-06-29 15:28:51 +0000 | |
| commit | 04a23d7e10fa42c5047b6f08048dbaacd1e74fcd (patch) | |
| tree | 5da803ece15b36a015ee23b07b6eb8701ac175e3 /runtime/runtime.h | |
| parent | 3e6bc4c76acb7be02165553314150b4728135f0e (diff) | |
| parent | 138dbff9246c89ac9fbe0b086b54fdab3f4451fb (diff) | |
Merge "Clean up profiler 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_; |