ladybird/Libraries/LibWeb/Loader/FileRequest.h
Andreas Kling e87f889e31 Everywhere: Abandon Swift adoption
After making no progress on this for a very long time, let's acknowledge
it's not going anywhere and remove it from the codebase.
2026-02-17 10:48:09 -05:00

28 lines
508 B
C++

/*
* Copyright (c) 2022, Lucas Chollet <lucas.chollet@free.fr>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/ByteString.h>
#include <AK/Error.h>
#include <AK/Function.h>
#include <LibWeb/Export.h>
namespace Web {
class WEB_API FileRequest {
public:
FileRequest(ByteString path, ESCAPING Function<void(ErrorOr<i32>)> on_file_request_finish);
ByteString path() const;
Function<void(ErrorOr<i32>)> on_file_request_finish;
private:
ByteString m_path {};
};
}