diff options
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 1373896cdff..64fd85b210b 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -3889,10 +3889,9 @@ impl ScriptThread { metric_type, metric_value, ); - window.Performance().queue_entry( - &entry.upcast::<PerformanceEntry>(), - true, /* buffer performance entry */ - ); + window + .Performance() + .queue_entry(&entry.upcast::<PerformanceEntry>()); } } |