Coverage Report

Created: 2025-11-16 07:46

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/serenity/Userland/Libraries/LibWeb/Loader/FileRequest.cpp
Line
Count
Source
1
/*
2
 * Copyright (c) 2022, Lucas Chollet <lucas.chollet@free.fr>
3
 *
4
 * SPDX-License-Identifier: BSD-2-Clause
5
 */
6
7
#include "FileRequest.h"
8
9
namespace Web {
10
11
FileRequest::FileRequest(ByteString path, Function<void(ErrorOr<i32>)> on_file_request_finish_callback)
12
0
    : on_file_request_finish(move(on_file_request_finish_callback))
13
0
    , m_path(move(path))
14
0
{
15
0
}
16
17
ByteString FileRequest::path() const
18
0
{
19
0
    return m_path;
20
0
}
21
22
}