Bug 1281276 part 2. Eliminate the unused XPCContext::CallerTypeIsNative/CallerTypeIsKnown methods. r=bholley

This commit is contained in:
Boris Zbarsky 2016-06-23 00:22:29 -04:00
Родитель 115145d1e8
Коммит 18ad20362f
1 изменённых файлов: 0 добавлений и 9 удалений

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

@ -687,15 +687,6 @@ public:
{
return LANG_JS == mCallingLangType;
}
bool CallerTypeIsNative() const
{
return LANG_NATIVE == mCallingLangType;
}
bool CallerTypeIsKnown() const
{
return LANG_UNKNOWN != mCallingLangType;
}
nsresult GetException(nsIException** e)
{
nsCOMPtr<nsIException> rval = mException;