Index: src/profiler/cpu-profiler.h |
diff --git a/src/profiler/cpu-profiler.h b/src/profiler/cpu-profiler.h |
index fa31754a6f64e5a866af2f331f7352621587e104..a6872e49863ded51b8078a1f1081031f4afdb65b 100644 |
--- a/src/profiler/cpu-profiler.h |
+++ b/src/profiler/cpu-profiler.h |
@@ -220,12 +220,14 @@ class CpuProfiler : public CodeEventObserver { |
void StopProcessor(); |
void ResetProfiles(); |
void LogBuiltins(); |
+ void CreateEntriesForRuntimeCallStats(); |
Isolate* const isolate_; |
base::TimeDelta sampling_interval_; |
std::unique_ptr<CpuProfilesCollection> profiles_; |
std::unique_ptr<ProfileGenerator> generator_; |
std::unique_ptr<ProfilerEventsProcessor> processor_; |
+ std::vector<std::unique_ptr<CodeEntry>> static_entries_; |
bool saved_is_logging_; |
bool is_profiling_; |