Files
atom/Atom/src/Atom.h
2012-03-21 11:13:20 -07:00

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);