mirror of
https://github.com/atom/atom.git
synced 2026-01-23 22:08:08 -05:00
24 lines
470 B
Objective-C
24 lines
470 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)initInBackground;
|
|
- (id)initSpecs;
|
|
- (id)initBenchmarks;
|
|
|
|
@end
|