Bug 1154802 - Tighten up some existing assertions. r=jww

This is a followup from bug 1154805 comment 13.
This commit is contained in:
Bobby Holley 2015-04-16 09:22:31 -07:00
Родитель 592239bbd9
Коммит cb6c4a8c8a
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -45,7 +45,7 @@ public:
virtual bool IsCurrentThreadIn() override
{
bool in = NS_GetCurrentThread() == mTarget;
MOZ_ASSERT_IF(in, GetCurrent() == this);
MOZ_ASSERT(in == (GetCurrent() == this));
return in;
}

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

@ -220,7 +220,7 @@ bool
MediaTaskQueue::IsCurrentThreadIn()
{
bool in = NS_GetCurrentThread() == mRunningThread;
MOZ_ASSERT_IF(in, GetCurrent() == this);
MOZ_ASSERT(in == (GetCurrent() == this));
return in;
}