mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:42:44 +00:00 
			
		
		
		
	 662711fa26
			
		
	
	
		662711fa26
		
	
	
	
	
		
			
			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.
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			464 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			464 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * 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 {};
 | |
| };
 | |
| 
 | |
| }
 |