Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
michael@0 | 1 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #include "nsISupports.idl" |
michael@0 | 7 | |
michael@0 | 8 | interface nsIChannel; |
michael@0 | 9 | |
michael@0 | 10 | /** |
michael@0 | 11 | * Dumping ground for load group experimental work. |
michael@0 | 12 | * This interface will never be frozen. If you are |
michael@0 | 13 | * using any feature exposed by this interface, be aware that this interface |
michael@0 | 14 | * will change and you will be broken. You have been warned. |
michael@0 | 15 | */ |
michael@0 | 16 | [scriptable, uuid(6ef2f8ac-9584-48f3-957a-0c94fff0c8c7)] |
michael@0 | 17 | interface nsPILoadGroupInternal : nsISupports |
michael@0 | 18 | { |
michael@0 | 19 | |
michael@0 | 20 | /** |
michael@0 | 21 | * Called when the load group has loaded main page and |
michael@0 | 22 | * subresources. (i.e.essentially DOMComplete) |
michael@0 | 23 | * |
michael@0 | 24 | * @param aDefaultChanel |
michael@0 | 25 | * The request channel for the base apge |
michael@0 | 26 | */ |
michael@0 | 27 | void OnEndPageLoad(in nsIChannel aDefaultChannel); |
michael@0 | 28 | }; |