Files
atom/native/atom_window_controller.h
Nathan Sobo 7882f70c0c Whitespace 💄
2012-08-28 11:58:24 -05:00

23 lines
446 B
Objective-C

#include "include/cef_app.h"
class AtomCefClient;
@interface AtomWindowController : NSWindowController <NSWindowDelegate> {
NSView *_webView;
NSString *_bootstrapScript;
NSString *_pathToOpen;
CefRefPtr<AtomCefClient> _cefClient;
CefRefPtr<CefV8Context> _atomContext;
bool _runningSpecs;
}
@property (nonatomic, retain) IBOutlet NSView *webView;
- (id)initWithPath:(NSString *)path;
- (id)initSpecs;
- (id)initBenchmarks;
@end