// // SBRWebProcessProxy.h // SBrowser // // Created by James Magahern on 7/22/20. // #import static inline NSString* SBRGetAllowedOriginsKey() { return @"allowedOrigins"; } static inline NSString* SBRGetAllScriptsAllowedKey() { return @"allScriptsAllowed"; } @protocol SBRWebProcessProxy - (void)hello; - (void)syncAllowedResourceOrigins:(NSArray *)allowedOrigins; - (void)setAllScriptsAllowed:(BOOL)allowed; @end