mirror of
https://github.com/atom/atom.git
synced 2026-01-26 23:38:48 -05:00
13 lines
346 B
Objective-C
13 lines
346 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "include/cef_base.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
|