1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:48:11 +00:00

LibWeb: Start tracking elapsed time when a resource is loaded

This commit is contained in:
Brian Gianforcaro 2021-09-11 21:15:15 -07:00 committed by Andreas Kling
parent 1d4be9ca33
commit bca8707e15
7 changed files with 17 additions and 9 deletions

View file

@ -137,7 +137,7 @@ bool FrameLoader::parse_document(DOM::Document& document, const ByteBuffer& data
return false;
}
bool FrameLoader::load(const LoadRequest& request, Type type)
bool FrameLoader::load(LoadRequest& request, Type type)
{
if (!request.is_valid()) {
load_error_page(request.url(), "Invalid request");