| Index: runtime/vm/heap.cc
|
| diff --git a/runtime/vm/heap.cc b/runtime/vm/heap.cc
|
| index b34af5460018d38e35ee9d4169ff90816a319dd3..6120f0c2fccb3f732a66c8978aa18111a6dcc13c 100644
|
| --- a/runtime/vm/heap.cc
|
| +++ b/runtime/vm/heap.cc
|
| @@ -369,7 +369,7 @@ void Heap::CollectNewSpaceGarbage(Thread* thread,
|
| VMTagScope tagScope(thread, VMTag::kGCNewSpaceTagId);
|
| #ifndef PRODUCT
|
| TimelineDurationScope tds(thread,
|
| - isolate()->GetGCStream(),
|
| + Timeline::GetGCStream(),
|
| "CollectNewGeneration");
|
| #endif // !PRODUCT
|
| UpdateClassHeapStatsBeforeGC(kNew);
|
| @@ -396,7 +396,7 @@ void Heap::CollectOldSpaceGarbage(Thread* thread,
|
| VMTagScope tagScope(thread, VMTag::kGCOldSpaceTagId);
|
| #ifndef PRODUCT
|
| TimelineDurationScope tds(thread,
|
| - isolate()->GetGCStream(),
|
| + Timeline::GetGCStream(),
|
| "CollectOldGeneration");
|
| #endif // !PRODUCT
|
| UpdateClassHeapStatsBeforeGC(kOld);
|
|
|