mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
c40b2a87c0
This never really belonged in XULMenuItemAccessibleWrap::Name, as it's specific to MSAA. This will allow us to remove this Wrap class. Differential Revision: https://phabricator.services.mozilla.com/D162455
31 lines
999 B
C++
31 lines
999 B
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_MsaaXULMenuAccessible_h__
|
|
#define mozilla_a11y_MsaaXULMenuAccessible_h__
|
|
|
|
#include "MsaaAccessible.h"
|
|
|
|
namespace mozilla {
|
|
namespace a11y {
|
|
|
|
class MsaaXULMenuitemAccessible : public MsaaAccessible {
|
|
public:
|
|
virtual /* [id][propget] */ HRESULT STDMETHODCALLTYPE get_accKeyboardShortcut(
|
|
/* [optional][in] */ VARIANT varChild,
|
|
/* [retval][out] */ BSTR __RPC_FAR* pszKeyboardShortcut) override;
|
|
virtual /* [id][propget] */ HRESULT STDMETHODCALLTYPE get_accName(
|
|
/* [optional][in] */ VARIANT varChild,
|
|
/* [retval][out] */ BSTR __RPC_FAR* pszName) override;
|
|
|
|
protected:
|
|
using MsaaAccessible::MsaaAccessible;
|
|
};
|
|
|
|
} // namespace a11y
|
|
} // namespace mozilla
|
|
|
|
#endif
|