зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1412547
- avoid unused lambda captures in MediaDecoder.cpp; r=jya
This commit is contained in:
Родитель
b8d06c7563
Коммит
24a08c31db
|
@ -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());
|
||||
});
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче