WebProcessExtension.connectPageCreated
gulong connectPageCreated(T)(T callback, Flag!"After" after = No.After) if (isCallable!T
&& is(ReturnType!T == void)
&& (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] : webkitwebprocessextension.web_page.WebPage)))
&& (Parameters!T.length < 2 || (ParameterStorageClassTuple!T[1] == ParameterStorageClass.none && is(Parameters!T[1] : webkitwebprocessextension.web_process_extension.WebProcessExtension)))
&& Parameters!T.length < 3)Connect to PageCreated signal.
This signal is emitted when a new #WebKitWebPage is created in the Web Process.
Parameters
callback | signal callback delegate or function to connect void callback(webkitwebprocessextension.web_page.WebPage webPage, webkitwebprocessextension.web_process_extension.WebProcessExtension webProcessExtension) webPage the #WebKitWebPage created (optional) webProcessExtension the instance the signal is connected to (optional) |
after | Yes.After to execute callback after default handler, No.After to execute before (default) |
Returns
Signal ID