merge mozilla-central to autoland. r=merge a=merge CLOSED TREE

This commit is contained in:
Sebastian Hengst 2017-10-29 12:10:40 +02:00
Родитель 60ad2e8979 1ebd2eff44
Коммит aa10a1407e
2 изменённых файлов: 5 добавлений и 3 удалений

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

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

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

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