mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
This has come up several times during code review, so let's just enforce it using a new clang-format 20 option.
28 lines
450 B
Objective-C
28 lines
450 B
Objective-C
/*
|
|
* Copyright (c) 2023-2025, Tim Flynn <trflynn89@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Error.h>
|
|
#include <LibIPC/Forward.h>
|
|
#include <LibMain/Main.h>
|
|
#include <LibWebView/Forward.h>
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
namespace Ladybird {
|
|
|
|
class WebViewBridge;
|
|
|
|
}
|
|
|
|
@interface Application : NSApplication
|
|
|
|
- (void)setupWebViewApplication:(Main::Arguments&)arguments;
|
|
- (ErrorOr<void>)launchServices;
|
|
|
|
@end
|