An extension to nsIWebBrowserChrome.
1.0
28
Introduced
Gecko 1.9
Inherits from:
nsIWebBrowserChrome
Last changed in Gecko 1.9 (Firefox 3)Method overview
void setStatusWithContext(in unsigned long statusType, in AString statusText, in nsISupports statusContext); |
Methods
setStatusWithContext()
Called when the status text in the chrome needs to be updated. This method may be called instead of nsIWebBrowserChrome.SetStatus()
. An implementor of this method, should still implement nsIWebBrowserChrome.SetStatus()
.
void setStatusWithContext( in unsigned long statusType, in AString statusText, in nsISupports statusContext );
Parameters
-
statusType
- Indicates what is setting the text.
-
statusText
-
Status string.
null
is an acceptable value meaning no status. -
statusContext
-
An object that provides context pertaining to the status type. If
statusType
is STATUS_LINK, then this may be a DOM node corresponding to the source of the link. This value can benull
if there is no context.