diff options
Diffstat (limited to 'runtime/runtime.h')
-rw-r--r-- | runtime/runtime.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h index 93d8fcfa46..20acffb697 100644 --- a/runtime/runtime.h +++ b/runtime/runtime.h @@ -457,7 +457,8 @@ class Runtime { void PreZygoteFork(); bool InitZygote(); - void InitNonZygoteOrPostFork(JNIEnv* env, NativeBridgeAction action, const char* isa); + void InitNonZygoteOrPostFork( + JNIEnv* env, bool is_system_server, NativeBridgeAction action, const char* isa); const instrumentation::Instrumentation* GetInstrumentation() const { return &instrumentation_; @@ -467,8 +468,8 @@ class Runtime { return &instrumentation_; } - void SetJitProfilingFilename(const char* profile_output_filename); - void UpdateProfilerState(int state); + void RegisterAppInfo(const std::vector<std::string>& code_paths, + const std::string& profile_output_filename); // Transaction support. bool IsActiveTransaction() const { @@ -733,7 +734,6 @@ class Runtime { std::string profile_output_filename_; ProfilerOptions profiler_options_; - bool profiler_started_; std::unique_ptr<TraceConfig> trace_config_; |