mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
Remove superfluous includes from IPCCompiler's generated output and add include directives in IPC definitions where appropriate.
12 lines
388 B
Plaintext
12 lines
388 B
Plaintext
#include <AK/URL.h>
|
|
|
|
endpoint RequestClient
|
|
{
|
|
request_progress(i32 request_id, Optional<u32> total_size, u32 downloaded_size) =|
|
|
request_finished(i32 request_id, bool success, u32 total_size) =|
|
|
headers_became_available(i32 request_id, IPC::Dictionary response_headers, Optional<u32> status_code) =|
|
|
|
|
// Certificate requests
|
|
certificate_requested(i32 request_id) =|
|
|
}
|