Bug 1578394 - MessageTask::GetType should actually return the message type, r=nika

Differential Revision: https://phabricator.services.mozilla.com/D44471

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Olli Pettay 2019-09-03 14:52:53 +00:00
Родитель 5274f1a3ce
Коммит 42aa5f2e5c
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -2067,6 +2067,8 @@ MessageChannel::MessageTask::GetType(uint32_t* aType) {
// has been.
return NS_ERROR_FAILURE;
}
*aType = Msg().type();
return NS_OK;
}