mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:48:10 +00:00
Browser+LibWeb+WebContent: Allow Browser to load local files
To achieve this goal: - The Browser unveils "/tmp/portal/filesystemaccess" - Pass the page through LoadRequest => ResourceLoader - ResourceLoader requests a file to the FileSystemAccessServer via IPC - OutOfProcessWebView handles it and sends a file descriptor back to the Page.
This commit is contained in:
parent
1ba9c821fb
commit
662711fa26
21 changed files with 165 additions and 14 deletions
21
Userland/Libraries/LibWeb/Loader/FileRequest.cpp
Normal file
21
Userland/Libraries/LibWeb/Loader/FileRequest.cpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
/*
|
||||
* 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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue