Files
atom/Classes/AtomController.h
2012-02-21 14:36:59 -08:00

20 lines
503 B
Objective-C

#import <Cocoa/Cocoa.h>
#import "include/cef.h"
@interface AtomController : NSWindowController <NSWindowDelegate> {
NSView *_webView;
NSString *_bootstrapScript;
}
- (id)initWithBootstrapScript:(NSString *)bootstrapScript;
- (id)initForSpecs;
- (void)afterCreated:(CefRefPtr<CefBrowser>) browser;
@property (nonatomic, retain) IBOutlet NSView *webView;
@end
// Returns the application browser settings based on command line arguments.
void AppGetBrowserSettings(CefBrowserSettings& settings);