mirror of
https://github.com/atom/atom.git
synced 2026-01-24 06:18:03 -05:00
22 lines
439 B
Objective-C
22 lines
439 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 |