| Index: src/heap/memory-reducer.h
|
| diff --git a/src/heap/memory-reducer.h b/src/heap/memory-reducer.h
|
| index f98cb045e3854a3ed6cae2a37a3da95c33efff43..b3272f868c9a49df0303ca50824ae3da674bd4ce 100644
|
| --- a/src/heap/memory-reducer.h
|
| +++ b/src/heap/memory-reducer.h
|
| @@ -96,18 +96,13 @@ class MemoryReducer {
|
| double last_gc_time_ms;
|
| };
|
|
|
| - enum EventType {
|
| - kTimer,
|
| - kMarkCompact,
|
| - kContextDisposed,
|
| - kBackgroundIdleNotification
|
| - };
|
| + enum EventType { kTimer, kMarkCompact, kContextDisposed };
|
|
|
| struct Event {
|
| EventType type;
|
| double time_ms;
|
| - bool low_allocation_rate;
|
| bool next_gc_likely_to_collect_more;
|
| + bool should_start_incremental_gc;
|
| bool can_start_incremental_gc;
|
| };
|
|
|
|
|