mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
This is the same behavior as RequestServer, with the added benefit that we know how to gracefully reconnect ImageDecoder to all WebContent processes on restart.
30 lines
639 B
Objective-C
30 lines
639 B
Objective-C
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Error.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibIPC/Forward.h>
|
|
#include <LibWebView/Forward.h>
|
|
|
|
#import <System/Cocoa.h>
|
|
|
|
namespace Ladybird {
|
|
class WebViewBridge;
|
|
}
|
|
|
|
@interface Application : NSApplication
|
|
|
|
- (instancetype)init;
|
|
|
|
- (ErrorOr<void>)launchRequestServer:(Vector<ByteString> const&)certificates;
|
|
- (ErrorOr<void>)launchImageDecoder;
|
|
- (ErrorOr<NonnullRefPtr<WebView::WebContentClient>>)launchWebContent:(Ladybird::WebViewBridge&)web_view_bridge;
|
|
- (ErrorOr<IPC::File>)launchWebWorker;
|
|
|
|
@end
|