Bug 1448529 - Remove aListDescendants param of ComputedStyle::List. r=emilio

MozReview-Commit-ID: 8vkOJ83U7Uv

--HG--
extra : rebase_source : 9408de3f0ff49fcd6ffe7c6d2294fc441f1ef659
This commit is contained in:
Xidorn Quan 2018-03-24 15:50:14 +11:00
Родитель 62c9697c80
Коммит 5ee2b91bed
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -348,7 +348,7 @@ ComputedStyle::CalcStyleDifference(ComputedStyle* aNewContext,
}
#ifdef DEBUG
void ComputedStyle::List(FILE* out, int32_t aIndent, bool)
void ComputedStyle::List(FILE* out, int32_t aIndent)
{
nsAutoCString str;
// Indent

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

@ -345,7 +345,7 @@ public:
static uint32_t GetBitForSID(const nsStyleStructID aSID) { return 1 << aSID; }
#ifdef DEBUG
void List(FILE* out, int32_t aIndent, bool aListDescendants = true);
void List(FILE* out, int32_t aIndent);
static const char* StructName(nsStyleStructID aSID);
static bool LookupStruct(const nsACString& aName, nsStyleStructID& aResult);
#endif