Add enumerateAndInitialize to public interface. Move enumeration out of Init

This commit is contained in:
davidm%netscape.com 1999-08-31 02:47:56 +00:00
parent 0cfe955305
commit 98cecafa89
2 changed files with 10 additions and 2 deletions

View File

@ -132,6 +132,9 @@ interface nsIAppShellService : nsISupports
in PRUint32 aChromeMask,
in nsIXULWindowCallbacks aCallbacks,
in long aInitialWidth, in long aInitialHeight);
// Apply Initialize function to each app shell component.
void EnumerateAndInitializeComponents();
/**
* Close a window.

View File

@ -243,8 +243,7 @@ nsAppShellService::Initialize( nsICmdLineService *aCmdLineService )
goto done;
}
// Initialize each registered component.
EnumerateComponents( &nsAppShellService::InitializeComponent );
// enable window mediation
rv = nsServiceManager::GetService(kWindowMediatorCID, kIWindowMediatorIID,
@ -280,6 +279,12 @@ void nsAppShellService::CreateHiddenWindow()
NS_ASSERTION(NS_SUCCEEDED(rv), "HiddenWindow not created");
}
NS_IMETHODIMP nsAppShellService::EnumerateAndInitializeComponents(void)
{
// Initialize each registered component.
EnumerateComponents( &nsAppShellService::InitializeComponent );
return NS_OK;
}
// Apply function (Initialize/Shutdown) to each app shell component.
void
nsAppShellService::EnumerateComponents( EnumeratorMemberFunction function ) {