Need to make this protected too. More Windows bustage. Bug 330089

This commit is contained in:
bzbarsky%mit.edu 2006-06-23 04:39:42 +00:00
parent bea4898196
commit 939cd4d9d3

View File

@ -193,6 +193,13 @@ protected:
return mChildrenInOnload.AppendObject(aChild);
}
// Inform a parent docloader that aChild is done calling its onload
// handler.
void ChildDoneWithOnload(nsIDocumentLoader* aChild) {
mChildrenInOnload.RemoveObject(aChild);
DocLoaderIsEmpty();
}
protected:
// IMPORTANT: The ownership implicit in the following member
// variables has been explicitly checked and set using nsCOMPtr
@ -243,13 +250,6 @@ private:
// fact empty.
void DocLoaderIsEmpty();
// Inform a parent docloader that aChild is done calling its onload
// handler.
void ChildDoneWithOnload(nsIDocumentLoader* aChild) {
mChildrenInOnload.RemoveObject(aChild);
DocLoaderIsEmpty();
}
nsListenerInfo *GetListenerInfo(nsIWebProgressListener* aListener);
PRInt64 GetMaxTotalProgress();