Bug 1290780. Part 4 - Assert IsShutdown() is false in SeekingStarted() since the callback is disconnected in Shutdown(). r=kaku

MozReview-Commit-ID: 7Q9EAhy3O7w

--HG--
extra : rebase_source : a68a9d50d0c2c669dd4c5ae0897e06c1538811d1
This commit is contained in:
JW Wang 2016-07-28 15:13:31 +08:00
Родитель 3d1ea356e3
Коммит e073bd7c27
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -1306,9 +1306,7 @@ void
MediaDecoder::SeekingStarted(MediaDecoderEventVisibility aEventVisibility)
{
MOZ_ASSERT(NS_IsMainThread());
if (IsShutdown())
return;
MOZ_ASSERT(!IsShutdown());
if (aEventVisibility != MediaDecoderEventVisibility::Suppressed) {
mOwner->SeekStarted();
}