Platform.cpp 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. #include "Platform.h"
  6. using namespace mozilla;
  7. using namespace mozilla::a11y;
  8. void
  9. a11y::PlatformInit()
  10. {
  11. }
  12. void
  13. a11y::PlatformShutdown()
  14. {
  15. }
  16. void
  17. a11y::ProxyCreated(ProxyAccessible*, uint32_t)
  18. {
  19. }
  20. void
  21. a11y::ProxyDestroyed(ProxyAccessible*)
  22. {
  23. }
  24. void
  25. a11y::ProxyEvent(ProxyAccessible*, uint32_t)
  26. {
  27. }
  28. void
  29. a11y::ProxyStateChangeEvent(ProxyAccessible*, uint64_t, bool)
  30. {
  31. }
  32. void
  33. a11y::ProxyCaretMoveEvent(ProxyAccessible* aTarget, int32_t aOffset)
  34. {
  35. }
  36. void
  37. a11y::ProxyTextChangeEvent(ProxyAccessible*, const nsString&, int32_t, uint32_t,
  38. bool, bool)
  39. {
  40. }
  41. void
  42. a11y::ProxyShowHideEvent(ProxyAccessible*, ProxyAccessible*, bool, bool)
  43. {
  44. }
  45. void
  46. a11y::ProxySelectionEvent(ProxyAccessible*, ProxyAccessible*, uint32_t)
  47. {
  48. }