Bug 676314: Count RuleHash's mArena in about:memory. r=bz

This commit is contained in:
Kyle Huey 2011-08-08 08:36:38 -04:00
parent 5121836049
commit 672b1171d1

View File

@ -738,6 +738,12 @@ RuleHash::SizeOf() const
n += mUniversalRules.SizeOf();
const PLArena* current = &mArena.first;
while (current) {
n += current->limit - current->base;
current = current->next;
}
return n;
}