PlatformChild.h 953 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #ifndef mozilla_a11y_PlatformChild_h
  6. #define mozilla_a11y_PlatformChild_h
  7. #include "mozilla/mscom/Registration.h"
  8. namespace mozilla {
  9. namespace a11y {
  10. class PlatformChild
  11. {
  12. public:
  13. PlatformChild();
  14. PlatformChild(PlatformChild&) = delete;
  15. PlatformChild(PlatformChild&&) = delete;
  16. PlatformChild& operator=(PlatformChild&) = delete;
  17. PlatformChild& operator=(PlatformChild&&) = delete;
  18. private:
  19. UniquePtr<mozilla::mscom::RegisteredProxy> mIA2Proxy;
  20. UniquePtr<mozilla::mscom::RegisteredProxy> mAccTypelib;
  21. UniquePtr<mozilla::mscom::RegisteredProxy> mMiscTypelib;
  22. };
  23. } // namespace mozilla
  24. } // namespace a11y
  25. #endif // mozilla_a11y_PlatformChild_h