summaryrefslogtreecommitdiffstats
path: root/chromium/v8/src/heap/cppgc/gc-info-table.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/heap/cppgc/gc-info-table.h')
-rw-r--r--chromium/v8/src/heap/cppgc/gc-info-table.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/chromium/v8/src/heap/cppgc/gc-info-table.h b/chromium/v8/src/heap/cppgc/gc-info-table.h
index 25141f5d1cc..749f30b258c 100644
--- a/chromium/v8/src/heap/cppgc/gc-info-table.h
+++ b/chromium/v8/src/heap/cppgc/gc-info-table.h
@@ -22,7 +22,10 @@ namespace internal {
// inherit from GarbageCollected.
struct GCInfo final {
FinalizationCallback finalize;
+ TraceCallback trace;
bool has_v_table;
+ // Keep sizeof(GCInfo) a power of 2.
+ size_t padding = 0;
};
class V8_EXPORT GCInfoTable final {