Bug 946879 - Guard compositable dumping with an environment variable. r=BenWa

This commit is contained in:
Kartikaya Gupta 2014-05-23 17:06:24 -04:00
Родитель df14cb0054
Коммит 505e516ded
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1262,7 +1262,7 @@ Layer::Dump(FILE* aFile, const char* aPrefix, bool aDumpHtml)
DumpSelf(aFile, aPrefix);
#ifdef MOZ_DUMP_PAINTING
if (AsLayerComposite() && AsLayerComposite()->GetCompositableHost()) {
if (gfxUtils::sDumpPainting && AsLayerComposite() && AsLayerComposite()->GetCompositableHost()) {
AsLayerComposite()->GetCompositableHost()->Dump(aFile, aPrefix, aDumpHtml);
}
#endif