michael@0: /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsISupports.idl" michael@0: michael@0: interface nsIChannel; michael@0: michael@0: /** michael@0: * Dumping ground for load group experimental work. michael@0: * This interface will never be frozen. If you are michael@0: * using any feature exposed by this interface, be aware that this interface michael@0: * will change and you will be broken. You have been warned. michael@0: */ michael@0: [scriptable, uuid(6ef2f8ac-9584-48f3-957a-0c94fff0c8c7)] michael@0: interface nsPILoadGroupInternal : nsISupports michael@0: { michael@0: michael@0: /** michael@0: * Called when the load group has loaded main page and michael@0: * subresources. (i.e.essentially DOMComplete) michael@0: * michael@0: * @param aDefaultChanel michael@0: * The request channel for the base apge michael@0: */ michael@0: void OnEndPageLoad(in nsIChannel aDefaultChannel); michael@0: };