Bug 1412547 - avoid unused lambda captures in MediaDecoder.cpp; r=jya

This commit is contained in:
Nathan Froyd 2017-10-28 15:40:15 -04:00
Родитель b8d06c7563
Коммит 24a08c31db
1 изменённых файлов: 2 добавлений и 3 удалений

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

@ -1549,14 +1549,13 @@ MediaDecoder::DumpDebugInfo()
return;
}
RefPtr<MediaDecoder> self = this;
GetStateMachine()->RequestDebugInfo()->Then(
SystemGroup::AbstractMainThreadFor(TaskCategory::Other), __func__,
[this, self, str] (const nsACString& aString) {
[str] (const nsACString& aString) {
DUMP("%s", str.get());
DUMP("%s", aString.Data());
},
[this, self, str] () {
[str] () {
DUMP("%s", str.get());
});
}