bug 277587 nsSecureBrowserUIImpl's nsUIContext interface requestor doesn't give

access to the dom window
patch by Christian Persch <chpe@gnome.org> r=jgmyers sr=roc a=asa
This commit is contained in:
cbiesinger%web.de 2005-08-17 13:38:03 +00:00
Родитель 3af8e0c56e
Коммит e519fb7724
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1366,6 +1366,10 @@ NS_IMETHODIMP nsUIContext::GetInterface(const nsIID & uuid, void * *result)
rv = internal->GetPrompter(&prompt);
*result = prompt;
} else if (uuid.Equals(NS_GET_IID(nsIDOMWindow))) {
*result = mWindow;
NS_ADDREF ((nsISupports*) *result);
rv = NS_OK;
} else {
rv = NS_ERROR_NO_INTERFACE;
}