mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
refactor: add CanGc as argument to extract_size_algorithm (#35593)
Signed-off-by: Yerkebulan Tulibergenov <yerkebulan@gmail.com>
This commit is contained in:
parent
f7c1cd4635
commit
54286229ea
3 changed files with 8 additions and 5 deletions
|
@ -122,7 +122,10 @@ pub(crate) fn extract_high_water_mark(
|
|||
/// If the size algorithm is not set, return a fallback function which always returns 1.
|
||||
///
|
||||
/// <https://streams.spec.whatwg.org/#make-size-algorithm-from-size-function>
|
||||
pub(crate) fn extract_size_algorithm(strategy: &QueuingStrategy) -> Rc<QueuingStrategySize> {
|
||||
pub(crate) fn extract_size_algorithm(
|
||||
strategy: &QueuingStrategy,
|
||||
_can_gc: CanGc,
|
||||
) -> Rc<QueuingStrategySize> {
|
||||
if strategy.size.is_none() {
|
||||
let cx = GlobalScope::get_cx();
|
||||
let fun_obj = native_raw_obj_fn!(cx, count_queuing_strategy_size, c"size", 0, 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue