2022-02-26 17:50:31 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Lucas Chollet <lucas.chollet@free.fr>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-12-16 17:49:34 +03:30
|
|
|
#include <AK/ByteString.h>
|
2022-02-26 17:50:31 +01:00
|
|
|
#include <AK/Error.h>
|
|
|
|
#include <AK/Function.h>
|
2025-03-22 19:12:30 -06:00
|
|
|
#include <AK/Swift.h>
|
2025-07-19 19:35:33 -07:00
|
|
|
#include <LibWeb/Export.h>
|
2022-02-26 17:50:31 +01:00
|
|
|
|
|
|
|
namespace Web {
|
|
|
|
|
2025-07-19 19:35:33 -07:00
|
|
|
class WEB_API FileRequest {
|
2022-02-26 17:50:31 +01:00
|
|
|
public:
|
2024-05-17 17:14:06 -07:00
|
|
|
FileRequest(ByteString path, ESCAPING Function<void(ErrorOr<i32>)> on_file_request_finish);
|
2022-02-26 17:50:31 +01:00
|
|
|
|
2023-12-16 17:49:34 +03:30
|
|
|
ByteString path() const;
|
2022-02-26 17:50:31 +01:00
|
|
|
|
|
|
|
Function<void(ErrorOr<i32>)> on_file_request_finish;
|
|
|
|
|
|
|
|
private:
|
2023-12-16 17:49:34 +03:30
|
|
|
ByteString m_path {};
|
2025-03-22 19:12:30 -06:00
|
|
|
} SWIFT_UNSAFE_REFERENCE; // FIXME: This type is actually move-only, not unsafe
|
2022-02-26 17:50:31 +01:00
|
|
|
|
|
|
|
}
|