mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 17:51:03 +00:00
22 lines
283 B
C++
22 lines
283 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2022, Lucas Chollet <lucas.chollet@free.fr>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "FileRequest.h"
|
||
|
|
|
||
|
|
namespace Web {
|
||
|
|
|
||
|
|
FileRequest::FileRequest(String path)
|
||
|
|
: m_path(move(path))
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
String FileRequest::path() const
|
||
|
|
{
|
||
|
|
return m_path;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|