merge mozilla-inbound to mozilla-central. r=merge a=merge

This commit is contained in:
Sebastian Hengst 2017-10-29 12:04:25 +02:00
Родитель 7486bf7e8a 24a08c31db
Коммит 1ebd2eff44
2 изменённых файлов: 5 добавлений и 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());
});
}

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

@ -1846,10 +1846,13 @@ class DebugFrame
void* flagsWord_;
};
// Avoid -Wunused-private-field warnings.
protected:
#if JS_BITS_PER_WORD == 32
uint32_t padding_; // See alignmentStaticAsserts().
#endif
private:
// The Frame goes at the end since the stack grows down.
Frame frame_;