зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1616716 - Don't forward ParentChannelListener QIs to BrowserParent for interfaces it doesn't implement. r=mayhemer
Differential Revision: https://phabricator.services.mozilla.com/D63424 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
62198d5223
Коммит
37dc791897
|
@ -150,9 +150,7 @@ ParentChannelListener::GetInterface(const nsIID& aIID, void** result) {
|
|||
return QueryInterface(aIID, result);
|
||||
}
|
||||
|
||||
if (aIID.Equals(NS_GET_IID(nsIAuthPromptProvider)) ||
|
||||
aIID.Equals(NS_GET_IID(nsISecureBrowserUI)) ||
|
||||
aIID.Equals(NS_GET_IID(nsIRemoteTab))) {
|
||||
if (aIID.Equals(NS_GET_IID(nsIAuthPromptProvider))) {
|
||||
if (mBrowserParent) {
|
||||
return mBrowserParent->QueryInterface(aIID, result);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче