michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #import "mozAccessible.h" michael@0: michael@0: #import "HyperTextAccessible.h" michael@0: michael@0: @interface mozTextAccessible : mozAccessible michael@0: { michael@0: // both of these are the same old mGeckoAccessible, but already michael@0: // QI'd for us, to the right type, for convenience. michael@0: mozilla::a11y::HyperTextAccessible* mGeckoTextAccessible; // strong michael@0: nsIAccessibleEditableText *mGeckoEditableTextAccessible; // strong michael@0: } michael@0: @end michael@0: michael@0: @interface mozTextLeafAccessible : mozAccessible michael@0: { michael@0: } michael@0: @end