зеркало из https://github.com/mozilla/gecko-dev.git
bug 1243077 - add AccessibleOrProxy::ChildCount() r=davidb
This commit is contained in:
Родитель
9ac1c316df
Коммит
8d47572098
|
@ -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; }
|
||||
|
|
Загрузка…
Ссылка в новой задаче