summaryrefslogtreecommitdiffstats
path: root/chromium/v8/src/heap/cppgc/gc-info.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/src/heap/cppgc/gc-info.cc')
-rw-r--r--chromium/v8/src/heap/cppgc/gc-info.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/chromium/v8/src/heap/cppgc/gc-info.cc b/chromium/v8/src/heap/cppgc/gc-info.cc
index 007eab3a338..70970139b17 100644
--- a/chromium/v8/src/heap/cppgc/gc-info.cc
+++ b/chromium/v8/src/heap/cppgc/gc-info.cc
@@ -10,9 +10,10 @@ namespace cppgc {
namespace internal {
RegisteredGCInfoIndex::RegisteredGCInfoIndex(
- FinalizationCallback finalization_callback, bool has_v_table)
+ FinalizationCallback finalization_callback, TraceCallback trace_callback,
+ bool has_v_table)
: index_(GlobalGCInfoTable::GetMutable().RegisterNewGCInfo(
- {finalization_callback, has_v_table})) {}
+ {finalization_callback, trace_callback, has_v_table})) {}
} // namespace internal
} // namespace cppgc