| Index: runtime/vm/isolate.h
|
| diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
|
| index c6a5bd9d565eecdc514a28b4c6ac9d421849a080..8516edb91a2e585a923e8f551248b44b04621d6b 100644
|
| --- a/runtime/vm/isolate.h
|
| +++ b/runtime/vm/isolate.h
|
| @@ -17,7 +17,6 @@
|
| #include "vm/tags.h"
|
| #include "vm/thread.h"
|
| #include "vm/os_thread.h"
|
| -#include "vm/timeline.h"
|
| #include "vm/timer.h"
|
| #include "vm/token_position.h"
|
|
|
| @@ -542,18 +541,6 @@ class Isolate : public BaseIsolate {
|
| ISOLATE_METRIC_LIST(ISOLATE_METRIC_ACCESSOR);
|
| #undef ISOLATE_METRIC_ACCESSOR
|
|
|
| -#ifndef PRODUCT
|
| -#define ISOLATE_TIMELINE_STREAM_ACCESSOR(name, not_used) \
|
| - TimelineStream* Get##name##Stream() { return &stream_##name##_; }
|
| - ISOLATE_TIMELINE_STREAM_LIST(ISOLATE_TIMELINE_STREAM_ACCESSOR)
|
| -#undef ISOLATE_TIMELINE_STREAM_ACCESSOR
|
| -#else
|
| -#define ISOLATE_TIMELINE_STREAM_ACCESSOR(name, not_used) \
|
| - TimelineStream* Get##name##Stream() { return NULL; }
|
| - ISOLATE_TIMELINE_STREAM_LIST(ISOLATE_TIMELINE_STREAM_ACCESSOR)
|
| -#undef ISOLATE_TIMELINE_STREAM_ACCESSOR
|
| -#endif // !PRODUCT
|
| -
|
| static intptr_t IsolateListLength();
|
|
|
| RawGrowableObjectArray* tag_table() const { return tag_table_; }
|
| @@ -869,12 +856,6 @@ class Isolate : public BaseIsolate {
|
| ISOLATE_METRIC_LIST(ISOLATE_METRIC_VARIABLE);
|
| #undef ISOLATE_METRIC_VARIABLE
|
|
|
| -#ifndef PRODUCT
|
| -#define ISOLATE_TIMELINE_STREAM_VARIABLE(name, not_used) \
|
| - TimelineStream stream_##name##_;
|
| - ISOLATE_TIMELINE_STREAM_LIST(ISOLATE_TIMELINE_STREAM_VARIABLE)
|
| -#undef ISOLATE_TIMELINE_STREAM_VARIABLE
|
| -#endif // !PRODUCT
|
|
|
| static Dart_IsolateCreateCallback create_callback_;
|
| static Dart_IsolateShutdownCallback shutdown_callback_;
|
| @@ -906,7 +887,6 @@ REUSABLE_HANDLE_LIST(REUSABLE_FRIEND_DECLARATION)
|
| friend class Scavenger; // VisitObjectPointers
|
| friend class ServiceIsolate;
|
| friend class Thread;
|
| - friend class Timeline;
|
| friend class IsolateTestHelper;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(Isolate);
|
|
|