Files
atom/native/atom_application.h
2012-08-30 18:10:05 -06:00

20 lines
507 B
Objective-C

#include "include/cef_app.h"
#include "include/cef_application_mac.h"
class AtomCefClient;
@interface AtomApplication : NSApplication <CefAppProtocol, NSApplicationDelegate> {
@private
NSWindowController *_backgroundWindowController;
BOOL handlingSendEvent_;
}
+ (CefSettings)createCefSettings;
- (void)open:(NSString *)path;
- (IBAction)runSpecs:(id)sender;
- (IBAction)runBenchmarks:(id)sender;
- (void)runSpecsThenExit:(BOOL)exitWhenDone;
- (void)runBenchmarksThenExit:(BOOL)exitWhenDone;
@end