blob: a08cb59e7994cd91ca9b1e6a3aed6aed0cf6964f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ Parsed from WebKit.framework WKScriptMessage.h }
{$ifdef TYPES}
type
WKScriptMessagePtr = ^WKScriptMessage;
{$endif}
{$if defined(WK_API_ENABLED)}
{$ifdef CLASSES}
type
WKScriptMessage = objcclass external (NSObject)
public
function body: id; message 'body';
function webView: WKWebView; message 'webView';
function frameInfo: WKFrameInfo; message 'frameInfo';
function name: NSString; message 'name';
end;
{$endif}
{$endif}
|