netwerk/base/public/nsPILoadGroupInternal.idl

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/netwerk/base/public/nsPILoadGroupInternal.idl	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,28 @@
     1.4 +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +#include "nsISupports.idl"
    1.10 +
    1.11 +interface nsIChannel;
    1.12 +
    1.13 +/**
    1.14 + * Dumping ground for load group experimental work.
    1.15 + * This interface will never be frozen.  If you are
    1.16 + * using any feature exposed by this interface, be aware that this interface
    1.17 + * will change and you will be broken.  You have been warned.
    1.18 + */
    1.19 +[scriptable, uuid(6ef2f8ac-9584-48f3-957a-0c94fff0c8c7)]
    1.20 +interface nsPILoadGroupInternal : nsISupports
    1.21 +{
    1.22 +
    1.23 +    /**
    1.24 +     * Called when the load group has loaded main page and
    1.25 +     * subresources. (i.e.essentially DOMComplete)
    1.26 +     *
    1.27 +     * @param aDefaultChanel
    1.28 +     *        The request channel for the base apge
    1.29 +     */
    1.30 +    void OnEndPageLoad(in nsIChannel aDefaultChannel);
    1.31 +};

mercurial