embedding/browser/webBrowser/nsIWebBrowserChrome2.idl

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /* vim:set ts=2 sw=2 sts=2 et cindent: */
     3 /* This Source Code Form is subject to the terms of the Mozilla Public
     4  * License, v. 2.0. If a copy of the MPL was not distributed with this
     5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     7 #include "nsIWebBrowserChrome.idl"
     9 /**
    10  * nsIWebBrowserChrome2 is an extension to nsIWebBrowserChrome.
    11  */
    12 [scriptable, uuid(2585a7b1-7b47-43c4-bf17-c6bf84e09b7b)]
    13 interface nsIWebBrowserChrome2 : nsIWebBrowserChrome
    14 {
    15   /**
    16    * Called when the status text in the chrome needs to be updated.  This
    17    * method may be called instead of nsIWebBrowserChrome::SetStatus.  An
    18    * implementor of this method, should still implement SetStatus.
    19    *
    20    * @param statusType
    21    *        Indicates what is setting the text.
    22    * @param status
    23    *        Status string.  Null is an acceptable value meaning no status.
    24    * @param contextNode 
    25    *        An object that provides context pertaining to the status type.
    26    *        If statusType is STATUS_LINK, then statusContext may be a DOM
    27    *        node corresponding to the source of the link.  This value can
    28    *        be null if there is no context.
    29    */
    30   void setStatusWithContext(in unsigned long statusType,
    31                             in AString statusText,
    32                             in nsISupports statusContext);
    33 };

mercurial