mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
13 lines
341 B
Objective-C
13 lines
341 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "include/cef.h"
|
|
|
|
@protocol BrowserDelegate <NSObject>
|
|
|
|
@optional
|
|
- (void)afterCreated;
|
|
- (void)loadStart;
|
|
- (void)loadEnd;
|
|
- (bool)keyEventOfType:(cef_handler_keyevent_type_t)type code:(int)code modifiers:(int)modifiers isSystemKey:(bool)isSystemKey isAfterJavaScript:(bool)isAfterJavaScript;
|
|
|
|
@end
|