/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
DocAccessibleWrap::DocAccessibleWrap(Document* aDocument, PresShell* aPresShell)
: DocAccessible(aDocument, aPresShell) { // We need an nsINode associated with this accessible to register it with the // right SessionAccessibility instance. When the base AccessibleWrap // constructor is called we don't have one yet because null is passed as the // content node. So we do it here after a Document is associated with the // accessible. if (!IPCAccessibilityActive()) {
MonitorAutoLock mal(nsAccessibilityService::GetAndroidMonitor());
SessionAccessibility::RegisterAccessible(this);
}
}
DocAccessibleWrap::~DocAccessibleWrap() {}
void DocAccessibleWrap::Shutdown() { // Unregister here before disconnecting from PresShell. if (!IPCAccessibilityActive()) {
MonitorAutoLock mal(nsAccessibilityService::GetAndroidMonitor()); if (IsRoot()) {
SessionAccessibility::UnregisterAll(PresShellPtr());
} else {
SessionAccessibility::UnregisterAccessible(this);
}
}
DocAccessible::Shutdown();
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.