/work/obj-fuzz/dist/include/mozilla/a11y/ProxyAccessible.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 | | /* vim: set ts=2 et sw=2 tw=80: */ |
3 | | /* This Source Code Form is subject to the terms of the Mozilla Public |
4 | | * License, v. 2.0. If a copy of the MPL was not distributed with this |
5 | | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
6 | | |
7 | | #ifndef mozilla_a11y_ProxyAccessible_h |
8 | | #define mozilla_a11y_ProxyAccessible_h |
9 | | |
10 | | #include "Accessible.h" |
11 | | #include "mozilla/a11y/ProxyAccessibleBase.h" |
12 | | #include "mozilla/a11y/Role.h" |
13 | | #include "nsIAccessibleText.h" |
14 | | #include "nsIAccessibleTypes.h" |
15 | | #include "nsString.h" |
16 | | #include "nsTArray.h" |
17 | | #include "nsRect.h" |
18 | | |
19 | | namespace mozilla { |
20 | | namespace a11y { |
21 | | |
22 | | class ProxyAccessible : public ProxyAccessibleBase<ProxyAccessible> |
23 | | { |
24 | | public: |
25 | | |
26 | | ProxyAccessible(uint64_t aID, ProxyAccessible* aParent, |
27 | | DocAccessibleParent* aDoc, role aRole, uint32_t aInterfaces) |
28 | | : ProxyAccessibleBase(aID, aParent, aDoc, aRole, aInterfaces) |
29 | | |
30 | 0 | { |
31 | 0 | MOZ_COUNT_CTOR(ProxyAccessible); |
32 | 0 | } |
33 | | |
34 | | ~ProxyAccessible() |
35 | 0 | { |
36 | 0 | MOZ_COUNT_DTOR(ProxyAccessible); |
37 | 0 | } |
38 | | |
39 | | #include "mozilla/a11y/ProxyAccessibleShared.h" |
40 | | |
41 | | protected: |
42 | | explicit ProxyAccessible(DocAccessibleParent* aThisAsDoc) |
43 | | : ProxyAccessibleBase(aThisAsDoc) |
44 | 0 | { MOZ_COUNT_CTOR(ProxyAccessible); } |
45 | | }; |
46 | | |
47 | | } |
48 | | } |
49 | | |
50 | | #endif |