Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "nsISupports.idl"
8 interface nsIChannel;
10 /**
11 * Dumping ground for load group experimental work.
12 * This interface will never be frozen. If you are
13 * using any feature exposed by this interface, be aware that this interface
14 * will change and you will be broken. You have been warned.
15 */
16 [scriptable, uuid(6ef2f8ac-9584-48f3-957a-0c94fff0c8c7)]
17 interface nsPILoadGroupInternal : nsISupports
18 {
20 /**
21 * Called when the load group has loaded main page and
22 * subresources. (i.e.essentially DOMComplete)
23 *
24 * @param aDefaultChanel
25 * The request channel for the base apge
26 */
27 void OnEndPageLoad(in nsIChannel aDefaultChannel);
28 };