2012-12-02 04:58:25 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "Platform.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::a11y;
|
|
|
|
|
|
|
|
void a11y::PlatformInit() {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2012-12-02 04:58:25 +04:00
|
|
|
void a11y::PlatformShutdown() {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-01-09 23:01:39 +03:00
|
|
|
void a11y::ProxyCreated(ProxyAccessible*, uint32_t) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-03-08 01:35:19 +04:00
|
|
|
void a11y::ProxyDestroyed(ProxyAccessible*) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-09-30 18:00:26 +04:00
|
|
|
void a11y::ProxyEvent(ProxyAccessible*, uint32_t) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-05-13 21:21:23 +03:00
|
|
|
void a11y::ProxyStateChangeEvent(ProxyAccessible*, uint64_t, bool) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-05-13 21:21:23 +03:00
|
|
|
void a11y::ProxyCaretMoveEvent(ProxyAccessible* aTarget, int32_t aOffset) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-06-05 22:43:30 +03:00
|
|
|
void a11y::ProxyTextChangeEvent(ProxyAccessible*, const nsString&, int32_t,
|
|
|
|
uint32_t, bool, bool) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-04-06 04:43:04 +03:00
|
|
|
void a11y::ProxyShowHideEvent(ProxyAccessible*, ProxyAccessible*, bool, bool) {}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-04-21 22:06:57 +03:00
|
|
|
void a11y::ProxySelectionEvent(ProxyAccessible*, ProxyAccessible*, uint32_t) {}
|