summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Loader/FileRequest.h
blob: ca4251fbca6e1d55a33a0bb595b325c75a703af6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright (c) 2022, Lucas Chollet <lucas.chollet@free.fr>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Error.h>
#include <AK/Function.h>
#include <AK/RefCounted.h>
#include <AK/String.h>

namespace Web {

class FileRequest : public RefCounted<FileRequest> {
public:
    explicit FileRequest(String path);

    String path() const;

    Function<void(ErrorOr<i32>)> on_file_request_finish;

private:
    String m_path {};
};

}