LibWeb: Delete unused ResourceLoader::load()

...and rename `load_unbuffered()` to `load()`.
This commit is contained in:
Aliaksandr Kalenik 2025-11-17 03:35:51 +01:00 committed by Tim Flynn
parent 3058274386
commit 16b0f1e6c2
Notes: github-actions[bot] 2025-11-20 11:30:46 +00:00
3 changed files with 3 additions and 153 deletions

View file

@ -2435,7 +2435,7 @@ GC::Ref<PendingResponse> nonstandard_resource_loader_file_or_http_network_fetch(
}
});
ResourceLoader::the().load_unbuffered(load_request, on_headers_received, on_data_received, on_complete);
ResourceLoader::the().load(load_request, on_headers_received, on_data_received, on_complete);
return pending_response;
}