mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +00:00
dc49387df8
MozReview-Commit-ID: Bx1p1nTurCz --HG-- extra : rebase_source : 6910e500f30eb42b45032dbab85a3dc9c014390b
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_a11y_XULListboxAccessibleWrap_h__
|
|
#define mozilla_a11y_XULListboxAccessibleWrap_h__
|
|
|
|
#include "XULListboxAccessible.h"
|
|
|
|
#include "ia2AccessibleTable.h"
|
|
#include "ia2AccessibleTableCell.h"
|
|
|
|
namespace mozilla {
|
|
namespace a11y {
|
|
|
|
/**
|
|
* IA2 wrapper class for XULListboxAccessible class implementing
|
|
* IAccessibleTable and IAccessibleTable2 interfaces.
|
|
*/
|
|
class XULListboxAccessibleWrap : public XULListboxAccessible,
|
|
public ia2AccessibleTable
|
|
{
|
|
~XULListboxAccessibleWrap() {}
|
|
|
|
public:
|
|
XULListboxAccessibleWrap(nsIContent* aContent, DocAccessible* aDoc) :
|
|
XULListboxAccessible(aContent, aDoc), ia2AccessibleTable(this) {}
|
|
|
|
// IUnknown
|
|
DECL_IUNKNOWN_INHERITED
|
|
|
|
// nsISupports
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
virtual void Shutdown() override;
|
|
};
|
|
|
|
} // namespace a11y
|
|
} // namespace mozilla
|
|
|
|
#endif
|