mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
23 lines
528 B
Objective-C
Executable File
23 lines
528 B
Objective-C
Executable File
#import "BrowserDelegate.h"
|
|
#import "include/cef.h"
|
|
#import "include/cef_application_mac.h"
|
|
|
|
class ClientHandler;
|
|
|
|
@class AtomController;
|
|
|
|
@interface Atom : NSApplication<CefAppProtocol, BrowserDelegate> {
|
|
NSWindow *_hiddenWindow;
|
|
BOOL handlingSendEvent_;
|
|
CefRefPtr<ClientHandler> _clientHandler;
|
|
}
|
|
|
|
- (void)open:(NSString *)path;
|
|
- (IBAction)runSpecs:(id)sender;
|
|
- (IBAction)runBenchmarks:(id)sender;
|
|
|
|
@end
|
|
|
|
// Returns the application settings based on command line arguments.
|
|
void AppGetSettings(CefSettings& settings);
|