Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(451)

Unified Diff: runtime/vm/isolate.h

Issue 1173333007: Refactor some Timeline interfaces to be simpler and support streaming (Closed) Base URL: git@github.com:dart-lang/sdk.git@timeline2
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/deopt_instructions.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index e284b97bb9ed17e04d77f29c64e29f326900a970..e9e4a7db52b954ec6f44985303b6c347c896997a 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -553,13 +553,13 @@ class Isolate : public BaseIsolate {
return trace_buffer_;
}
- void SetTimelineEventBuffer(TimelineEventBuffer* timeline_event_buffer);
+ void SetTimelineEventRecorder(TimelineEventRecorder* timeline_event_recorder);
- TimelineEventBuffer* timeline_event_buffer() const {
- return timeline_event_buffer_;
+ TimelineEventRecorder* timeline_event_recorder() const {
+ return timeline_event_recorder_;
}
- void RemoveTimelineEventBuffer();
+ void RemoveTimelineEventRecorder();
DeoptContext* deopt_context() const { return deopt_context_; }
void set_deopt_context(DeoptContext* value) {
@@ -802,7 +802,7 @@ class Isolate : public BaseIsolate {
TraceBuffer* trace_buffer_;
// TimelineEvent buffer.
- TimelineEventBuffer* timeline_event_buffer_;
+ TimelineEventRecorder* timeline_event_recorder_;
IsolateProfilerData* profiler_data_;
Mutex profiler_data_mutex_;
« no previous file with comments | « runtime/vm/deopt_instructions.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698