WebResourceLoadDelegate.inc 2.1 KB

123456789101112131415161718
  1. { Parsed from WebKit.framework WebResourceLoadDelegate.h }
  2. {$ifdef CLASSES}
  3. type
  4. WebResourceLoadDelegate = objccategory external (NSObject)
  5. function webView_identifierForInitialRequest_fromDataSource (sender: WebView; request: NSURLRequest; dataSource: WebDataSource): id; message 'webView:identifierForInitialRequest:fromDataSource:';
  6. function webView_resource_willSendRequest_redirectResponse_fromDataSource (sender: WebView; identifier: id; request: NSURLRequest; redirectResponse: NSURLResponse; dataSource: WebDataSource): NSURLRequest; message 'webView:resource:willSendRequest:redirectResponse:fromDataSource:';
  7. procedure webView_resource_didReceiveAuthenticationChallenge_fromDataSource (sender: WebView; identifier: id; challenge: NSURLAuthenticationChallenge; dataSource: WebDataSource); message 'webView:resource:didReceiveAuthenticationChallenge:fromDataSource:';
  8. procedure webView_resource_didCancelAuthenticationChallenge_fromDataSource (sender: WebView; identifier: id; challenge: NSURLAuthenticationChallenge; dataSource: WebDataSource); message 'webView:resource:didCancelAuthenticationChallenge:fromDataSource:';
  9. procedure webView_resource_didReceiveResponse_fromDataSource (sender: WebView; identifier: id; response: NSURLResponse; dataSource: WebDataSource); message 'webView:resource:didReceiveResponse:fromDataSource:';
  10. procedure webView_resource_didReceiveContentLength_fromDataSource (sender: WebView; identifier: id; length: NSInteger; dataSource: WebDataSource); message 'webView:resource:didReceiveContentLength:fromDataSource:';
  11. procedure webView_resource_didFinishLoadingFromDataSource (sender: WebView; identifier: id; dataSource: WebDataSource); message 'webView:resource:didFinishLoadingFromDataSource:';
  12. procedure webView_resource_didFailLoadingWithError_fromDataSource (sender: WebView; identifier: id; error: NSError; dataSource: WebDataSource); message 'webView:resource:didFailLoadingWithError:fromDataSource:';
  13. procedure webView_plugInFailedWithError_dataSource (sender: WebView; error: NSError; dataSource: WebDataSource); message 'webView:plugInFailedWithError:dataSource:';
  14. end;
  15. {$endif}