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

Unified Diff: runtime/vm/isolate.h

Issue 1294023009: Switch to a VM wide timeline recorder (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index 9f54497d4c41840db46b6d79ec892ab0d7da599e..3d06d6f091662382d079c13919042702373feb7c 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -573,14 +573,6 @@ class Isolate : public BaseIsolate {
return trace_buffer_;
}
- void SetTimelineEventRecorder(TimelineEventRecorder* timeline_event_recorder);
-
- TimelineEventRecorder* timeline_event_recorder() const {
- return timeline_event_recorder_;
- }
-
- void RemoveTimelineEventRecorder();
-
DeoptContext* deopt_context() const { return deopt_context_; }
void set_deopt_context(DeoptContext* value) {
ASSERT(value == NULL || deopt_context_ == NULL);
@@ -857,9 +849,6 @@ class Isolate : public BaseIsolate {
// Trace buffer support.
TraceBuffer* trace_buffer_;
- // TimelineEvent buffer.
- TimelineEventRecorder* timeline_event_recorder_;
-
IsolateProfilerData* profiler_data_;
Mutex profiler_data_mutex_;

Powered by Google App Engine
This is Rietveld 408576698