16 lines
259 B
C
16 lines
259 B
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
|