| Index: runtime/vm/heap.h
|
| ===================================================================
|
| --- runtime/vm/heap.h (revision 34740)
|
| +++ runtime/vm/heap.h (working copy)
|
| @@ -11,7 +11,6 @@
|
| #include "vm/globals.h"
|
| #include "vm/pages.h"
|
| #include "vm/scavenger.h"
|
| -#include "vm/spaces.h"
|
| #include "vm/weak_table.h"
|
|
|
| namespace dart {
|
| @@ -259,8 +258,12 @@
|
| public:
|
| Data() {}
|
| int64_t micros_;
|
| - SpaceUsage new_;
|
| - SpaceUsage old_;
|
| + intptr_t new_used_in_words_;
|
| + intptr_t new_capacity_in_words_;
|
| + intptr_t new_external_in_words_;
|
| + intptr_t old_used_in_words_;
|
| + intptr_t old_capacity_in_words_;
|
| + intptr_t old_external_in_words_;
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(Data);
|
| };
|
|
|