pulsar/native/atom_application.h
Corey Johnson & Nathan Sobo e8aa1524c7 Rename atom folder to native
2012-08-27 13:21:59 -07:00

20 lines
432 B
Objective-C

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