Bug 1260187 - remove recaching version of DocAccessible::UpdateTreeOnInsertion, r=yzen

This commit is contained in:
Alexander Surkov 2016-03-31 20:46:45 -04:00
Родитель 2a512468b1
Коммит 35d213f532
2 изменённых файлов: 0 добавлений и 63 удалений

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

@ -1878,64 +1878,6 @@ DocAccessible::FireEventsOnInsertion(Accessible* aContainer,
FireDelayedEvent(aReorderEvent);
}
void
DocAccessible::UpdateTreeOnInsertion(Accessible* aContainer)
{
for (uint32_t idx = 0; idx < aContainer->ContentChildCount(); idx++) {
Accessible* child = aContainer->ContentChildAt(idx);
child->SetSurvivingInUpdate(true);
}
AutoTreeMutation mut(aContainer);
aContainer->InvalidateChildren();
aContainer->EnsureChildren();
RefPtr<AccReorderEvent> reorderEvent = new AccReorderEvent(aContainer);
uint32_t updateFlags = eNoAccessible;
for (uint32_t idx = 0; idx < aContainer->ContentChildCount(); idx++) {
Accessible* child = aContainer->ContentChildAt(idx);
if (child->IsSurvivingInUpdate()) {
child->SetSurvivingInUpdate(false);
continue;
}
// A new child has been created, update its tree.
#ifdef A11Y_LOG
if (logging::IsEnabled(logging::eTree)) {
logging::MsgBegin("TREE", "process content insertion");
logging::Node("container", aContainer->GetNode());
logging::Node("child", child->GetContent());
logging::Address("child", child);
logging::MsgEnd();
}
#endif
updateFlags |= UpdateTreeInternal(child, true, reorderEvent);
}
// Content insertion/removal is not cause of accessible tree change.
if (updateFlags == eNoAccessible)
return;
// Check to see if change occurred inside an alert, and fire an EVENT_ALERT
// if it did.
if (!(updateFlags & eAlertAccessible) &&
(aContainer->IsAlert() || aContainer->IsInsideAlert())) {
Accessible* ancestor = aContainer;
do {
if (ancestor->IsAlert()) {
FireDelayedEvent(nsIAccessibleEvent::EVENT_ALERT, ancestor);
break;
}
}
while ((ancestor = ancestor->Parent()));
}
MaybeNotifyOfValueChange(aContainer);
FireDelayedEvent(reorderEvent);
}
void
DocAccessible::UpdateTreeOnRemoval(Accessible* aContainer, nsIContent* aChildNode)
{

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

@ -496,11 +496,6 @@ protected:
*/
void ProcessInvalidationList();
/**
* Update the tree on content insertion.
*/
void UpdateTreeOnInsertion(Accessible* aContainer);
/**
* Update the accessible tree for content removal.
*/