Files
atom/native/atom_application.h
Corey Johnson & Nathan Sobo 949abdcd19 Pass argc and argv to CefInitialize
2012-09-10 17:22:21 -07:00

20 lines
587 B
Objective-C

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