bug 1243077 - add AccessibleOrProxy::ChildCount() r=davidb

This commit is contained in:
Trevor Saunders 2016-01-22 04:04:08 -05:00
Родитель 9ac1c316df
Коммит 8d47572098
1 изменённых файлов: 9 добавлений и 0 удалений

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

@ -50,6 +50,15 @@ public:
bool IsNull() const { return mBits == 0; }
uint32_t ChildCount() const
{
if (IsProxy()) {
return AsProxy()->ChildrenCount();
}
return AsAccessible()->ChildCount();
}
// XXX these are implementation details that ideally would not be exposed.
uintptr_t Bits() const { return mBits; }
void SetBits(uintptr_t aBits) { mBits = aBits; }