Files
Attractor/SBrowserProcessBundle/SBRWebProcessProxy.h
James Magahern cddc684f54 Initial commit
Able to actually block scripts using a plugin, have XPC set up between plugin and
host process. Limited UI support
2020-07-22 19:29:38 -07:00

16 lines
259 B
Objective-C

//
// SBRWebProcessProxy.h
// SBrowser
//
// Created by James Magahern on 7/22/20.
//
#import <Foundation/Foundation.h>
@protocol SBRWebProcessProxy <NSObject>
- (void)hello;
- (void)syncAllowedResourceOrigins:(NSSet<NSString *> *)allowedOrigins;
@end