mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
3ab5ecb671
Unlike the Inspector window, this is owned by the ApplicationDelegate as there should be only a single task manager for the entire application.
19 lines
298 B
Objective-C
19 lines
298 B
Objective-C
/*
|
|
* Copyright (c) 2024, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#import <System/Cocoa.h>
|
|
|
|
@class LadybirdWebView;
|
|
|
|
@interface TaskManager : NSWindow
|
|
|
|
- (instancetype)init;
|
|
|
|
@property (nonatomic, strong) LadybirdWebView* web_view;
|
|
|
|
@end
|